Reply to thread

InitializeComponent is in for example Television.cs (starting on line 126) , not in an resx file.


Just to be sure you took the files from the patch and applied them to an updated SVN checkout and you see no mention of allowed zoom modes?


Among the member fields you should see:

    private MediaPortal.UserInterface.Controls.MPGroupBox gAllowedModes;

      private MediaPortal.UserInterface.Controls.MPCheckBox cbAllowNormal;

      private MediaPortal.UserInterface.Controls.MPCheckBox cbAllowZoom149;

      private MediaPortal.UserInterface.Controls.MPCheckBox cbAllowOriginal;

      private MediaPortal.UserInterface.Controls.MPCheckBox cbAllowZoom;

      private MediaPortal.UserInterface.Controls.MPCheckBox cbAllowLetterbox;

      private MediaPortal.UserInterface.Controls.MPCheckBox cbAllowStretch;

      private MediaPortal.UserInterface.Controls.MPCheckBox cbAllowPanScan;


And in initialize component you should have:

        this.gAllowedModes = new MediaPortal.UserInterface.Controls.MPGroupBox();

        this.cbAllowNormal = new MediaPortal.UserInterface.Controls.MPCheckBox();

        this.cbAllowZoom149 = new MediaPortal.UserInterface.Controls.MPCheckBox();

        this.cbAllowOriginal = new MediaPortal.UserInterface.Controls.MPCheckBox();

        this.cbAllowZoom = new MediaPortal.UserInterface.Controls.MPCheckBox();

        this.cbAllowLetterbox = new MediaPortal.UserInterface.Controls.MPCheckBox();

        this.cbAllowStretch = new MediaPortal.UserInterface.Controls.MPCheckBox();

        this.cbAllowPanScan = new MediaPortal.UserInterface.Controls.MPCheckBox();

etc...


Top Bottom