summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-04-25 16:35:43 +0000
committersr55 <[email protected]>2015-04-25 16:35:43 +0000
commit780d8a9a1c86a27c8608f0cdca3a8b58cc9fb894 (patch)
tree212d93ed4dcca8274f755e005487dfe2e62eb238 /win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
parentca6ad7f1c6f414758a99ea82bdfa9e64aae6aada (diff)
WinGui: Further UI / UX Tweaks. Main body of settings disabled until the user performs a scan.
Keyboard shortcut changes: Alt+O -> Open Source Panel (New) Ctrl+O -> Open FileScan (Unchanged) Ctrl+Shift+O -> Open Folder (Was Ctrl+R) Ctrl+F (Removed) git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7125 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs')
-rw-r--r--win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs b/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
index 6cced25d4..b351e71bd 100644
--- a/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
+++ b/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
@@ -78,20 +78,20 @@ namespace HandBrakeWPF.Commands
mainViewModel.AddToQueue();
}
- // Scan a File (Ctrl+F)
- if (gesture.Modifiers == ModifierKeys.Control && gesture.Key == Key.F)
+ // Scan a File (Alt+O)
+ if (gesture.Modifiers == ModifierKeys.Alt && gesture.Key == Key.O)
{
- mainViewModel.FileScan();
- MessageBox.Show("Please use Ctrl-O in future. Ctrl-F is being deprecated in favour of something more standard. :)");
+ mainViewModel.SelectSourceWindow();
}
+ // Scan a File (Ctrl+O)
if (gesture.Modifiers == ModifierKeys.Control && gesture.Key == Key.O)
{
mainViewModel.FileScan();
}
- // Scan a Folder (Ctrl+R)
- if (gesture.Modifiers == ModifierKeys.Control && gesture.Key == Key.R)
+ // Scan a Folder (Ctrl+Shift+O)
+ if (gesture.Modifiers == (ModifierKeys.Control | ModifierKeys.Shift) && gesture.Key == Key.O)
{
mainViewModel.FolderScan();
}