summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Views
diff options
context:
space:
mode:
authorsr55 <[email protected]>2016-02-20 21:21:45 +0000
committersr55 <[email protected]>2016-02-20 21:21:45 +0000
commitfa82fc310a78663421faa9a2b0c27cccf3fc6446 (patch)
tree305d1c0460ad297c193604fdb5b0012afaa517df /win/CS/HandBrakeWPF/Views
parentead31bdf2ea3dacd0ff5c9f576de14e6d7d918e3 (diff)
WinGui: Added a text block on the Queue Add selection that shows the current preset to be used to for adding to the queue.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r--win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml6
1 files changed, 5 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml b/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml
index 6e2fd834b..2b5ae08de 100644
--- a/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml
+++ b/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml
@@ -8,7 +8,7 @@
xmlns:Properties="clr-namespace:HandBrakeWPF.Properties"
Title="{Binding Title}"
Width="550"
- Height="450"
+ Height="475"
SizeToContent="Height"
WindowStartupLocation="CenterScreen"
TextOptions.TextFormattingMode="Display"
@@ -100,6 +100,10 @@
<!-- Checlist -->
<StackPanel Orientation="Vertical" Grid.Row="3" Margin="10,10,10,0">
+ <StackPanel Orientation="Horizontal" Margin="0,0,0,5">
+ <TextBlock Text="{Binding CurrentPreset}" TextWrapping="Wrap" />
+ </StackPanel>
+
<TextBlock Text="{x:Static Properties:Resources.QueueSelection_AutoNameWarning}"
TextWrapping="Wrap" Visibility="{Binding IsAutoNamingEnabled, Converter={StaticResource boolToVisConverter}, ConverterParameter=true}"/>
</StackPanel>