summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Commands
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-04-27 18:30:46 +0000
committersr55 <[email protected]>2015-04-27 18:30:46 +0000
commit83823d7765643b39bc0ad94bd9b23b22b8ce861b (patch)
tree54b3106ee10bf2b40d0aa20649a73e4e90658f4b /win/CS/HandBrakeWPF/Commands
parent3aa33bea1fe9f6ebbda25caab891daed43992d5d (diff)
WinGui: Further Minor UI tweaks. F1 Keyboard shortcut for Help.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7130 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Commands')
-rw-r--r--win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs b/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
index b351e71bd..06c566991 100644
--- a/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
+++ b/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
@@ -96,6 +96,12 @@ namespace HandBrakeWPF.Commands
mainViewModel.FolderScan();
}
+ // Launch Help (F1)
+ if (gesture.Key == Key.F1)
+ {
+ mainViewModel.LaunchHelp();
+ }
+
if (gesture.Modifiers == (ModifierKeys.Control | ModifierKeys.Shift) && gesture.Key == Key.G)
{
GC.Collect();