summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Views/MainView.xaml
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-01-31 20:31:58 +0000
committersr55 <[email protected]>2018-01-31 20:31:58 +0000
commitbee8e5bd5f7b6e9258e9aaab98babd2d3cca1388 (patch)
tree641a28b609acbd62e0ab5b5d8acfb5ea43e5b275 /win/CS/HandBrakeWPF/Views/MainView.xaml
parentd647cd46423198c2105d5ad0144f400c9412d365 (diff)
WinGui: Add Presets button to toolbar. The preset management options are not discoverable enough as-is
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/MainView.xaml')
-rw-r--r--win/CS/HandBrakeWPF/Views/MainView.xaml14
1 files changed, 13 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml
index 4de963c1f..dfbc93c7c 100644
--- a/win/CS/HandBrakeWPF/Views/MainView.xaml
+++ b/win/CS/HandBrakeWPF/Views/MainView.xaml
@@ -228,7 +228,7 @@
<Separator />
- <Button Name="ShowQueue" AutomationProperties.Name="Show Queue" cal:Message.Attach="[Event Click] = [Action OpenQueueWindow]">
+ <Button Name="ShowQueue" AutomationProperties.Name="Queue" cal:Message.Attach="[Event Click] = [Action OpenQueueWindow]">
<StackPanel Orientation="Horizontal">
<Image Width="32"
Height="32"
@@ -262,6 +262,18 @@
Content="Activity Log"/>
</StackPanel>
</Button>
+
+
+ <Button Name="PresetPane" AutomationProperties.Name="Show Preset Pane" cal:Message.Attach="[Event Click] = [Action ShowPresetPane]">
+ <StackPanel Orientation="Horizontal">
+ <Image Width="32"
+ Height="32"
+ Source="Images/Presets2.png"/>
+ <Label Margin="8,0,0,0"
+ VerticalAlignment="Center"
+ Content="Presets"/>
+ </StackPanel>
+ </Button>
</ToolBar>
</StackPanel>