diff options
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.Designer.cs | 6 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.resx | 4 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Views/QueueView.xaml | 4 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Views/QueueView.xaml.cs | 8 |
4 files changed, 12 insertions, 10 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs index 14d2c2732..13ecd9daa 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace HandBrakeWPF.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] public class Resources { @@ -3842,7 +3842,7 @@ namespace HandBrakeWPF.Properties { } /// <summary> - /// Looks up a localized string similar to Destination: . + /// Looks up a localized string similar to Dest: . /// </summary> public static string QueueView_Destination { get { @@ -4067,7 +4067,7 @@ namespace HandBrakeWPF.Properties { } /// <summary> - /// Looks up a localized string similar to Source: . + /// Looks up a localized string similar to Src: . /// </summary> public static string QueueView_Source { get { diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx index 066b249ab..4546be660 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.resx +++ b/win/CS/HandBrakeWPF/Properties/Resources.resx @@ -1458,7 +1458,7 @@ This will not affect your current settings in the Subtitle tab.</value> <value>Delete</value>
</data>
<data name="QueueView_Destination" xml:space="preserve">
- <value>Destination: </value>
+ <value>Dest: </value>
</data>
<data name="QueueView_DoNothing" xml:space="preserve">
<value>Do nothing</value>
@@ -1527,7 +1527,7 @@ This will not affect your current settings in the Subtitle tab.</value> <value>Shutdown</value>
</data>
<data name="QueueView_Source" xml:space="preserve">
- <value>Source: </value>
+ <value>Src: </value>
</data>
<data name="QueueView_Start" xml:space="preserve">
<value>Start Queue</value>
diff --git a/win/CS/HandBrakeWPF/Views/QueueView.xaml b/win/CS/HandBrakeWPF/Views/QueueView.xaml index 5e9c851c1..14dbb56c4 100644 --- a/win/CS/HandBrakeWPF/Views/QueueView.xaml +++ b/win/CS/HandBrakeWPF/Views/QueueView.xaml @@ -15,7 +15,7 @@ xmlns:Properties="clr-namespace:HandBrakeWPF.Properties"
xmlns:queue="clr-namespace:HandBrakeWPF.Converters.Queue"
Title="{Binding Title}"
- Width="750"
+ Width="900"
Height="520"
MinWidth="400"
MinHeight="300"
@@ -91,7 +91,7 @@ <Grid Grid.Row="2" Margin="0,15,0,0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="3*" MaxWidth="600" x:Name="leftTabPanel" />
- <ColumnDefinition Width="5*" x:Name="rightTabPanel" />
+ <ColumnDefinition Width="4*" x:Name="rightTabPanel" />
</Grid.ColumnDefinitions>
<Grid>
diff --git a/win/CS/HandBrakeWPF/Views/QueueView.xaml.cs b/win/CS/HandBrakeWPF/Views/QueueView.xaml.cs index 95915e828..b29e6e8e2 100644 --- a/win/CS/HandBrakeWPF/Views/QueueView.xaml.cs +++ b/win/CS/HandBrakeWPF/Views/QueueView.xaml.cs @@ -39,9 +39,11 @@ namespace HandBrakeWPF.Views // Make the view adaptive.
if (e.WidthChanged)
{
- this.summaryTabControl.Visibility = this.ActualWidth < 600 ? Visibility.Collapsed : Visibility.Visible;
- this.leftTabPanel.Width = this.ActualWidth < 600 ? new GridLength(this.ActualWidth - 10, GridUnitType.Star) : new GridLength(3, GridUnitType.Star);
- this.leftTabPanel.MaxWidth = this.ActualWidth < 600 ? 650 : 400;
+ int queueSizeLimit = 675;
+
+ this.summaryTabControl.Visibility = this.ActualWidth < queueSizeLimit ? Visibility.Collapsed : Visibility.Visible;
+ this.leftTabPanel.Width = this.ActualWidth < queueSizeLimit ? new GridLength(this.ActualWidth - 10, GridUnitType.Star) : new GridLength(3, GridUnitType.Star);
+ this.leftTabPanel.MaxWidth = this.ActualWidth < queueSizeLimit ? 680 : 500;
}
}
private void ContextMenu_OnOpened(object sender, RoutedEventArgs e)
|