Skip to content

Commit

Permalink
merge post-processing controls with general tab #81
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxstupo committed Feb 20, 2021
1 parent 68bc632 commit 435b0f9
Show file tree
Hide file tree
Showing 13 changed files with 277 additions and 492 deletions.
12 changes: 6 additions & 6 deletions YDL-UI/Controls/BasicAddDownloadPanel.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions YDL-UI/Controls/BasicAddDownloadPanel.resx
Expand Up @@ -120,7 +120,4 @@
<metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>
2 changes: 1 addition & 1 deletion YDL-UI/Controls/FrameRateSelector.cs
Expand Up @@ -38,7 +38,7 @@ public partial class FrameRateSelector : UserControl {
cbxFrameRate.SelectedIndex = 0;
cbxFrameRate.Format += (s, ee) => {
int value = (int) ee.ListItem;
ee.Value = value < 0 ? Localization.GetString("download_dialog.quality.fr.custom", "Custom") : value.ToString();
ee.Value = value < 0 ? Localization.GetString("download_dialog.general.fr.custom", "Custom") : value.ToString();
};

nudCustomFrameRate.Visible = false;
Expand Down
131 changes: 51 additions & 80 deletions YDL-UI/Forms/FormAddDownload.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit 435b0f9

@Maxstupo
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: This commit will break existing presets. Specifically any controls within the Quality or Post Processing tabs.

Maxstupo/ydl-ui_i18n@709856f

Locale Keys:
download_dialog.quality -> download_dialog.general
download_dialog.post_processing -> download_dialog.general.post_processing

Please sign in to comment.