summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-09-21 17:54:33 +0000
committersr55 <[email protected]>2013-09-21 17:54:33 +0000
commit8bccfabca28d059978f1eb8e516592f4e2f06c1a (patch)
tree56d30dd1575c01d34cfbb53e8f0512c97683f1ca /win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
parent515f8070a43f25de58019314bf6893c12a478c76 (diff)
WinGui: Remove now unneeded debug menu
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5791 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs')
-rw-r--r--win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs b/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
index cc5b546a2..636c424e6 100644
--- a/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
+++ b/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs
@@ -88,6 +88,11 @@ namespace HandBrakeWPF.Commands
{
mainViewModel.FolderScan();
}
+
+ if (gesture.Modifiers == (ModifierKeys.Control | ModifierKeys.Shift) && gesture.Key == Key.D)
+ {
+ mainViewModel.ShowCliQuery();
+ }
}
}