diff options
author | sr55 <[email protected]> | 2019-04-19 22:15:26 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-04-19 22:15:41 +0100 |
commit | 4f82301770f47c6601115d88c3ff5d69119ac1e2 (patch) | |
tree | b4078ff42035c70c80835e9a6ead2281357be51b /win/CS/HandBrakeWPF/Commands | |
parent | 97dabfbc19ebf3eaeb86337cc1114ab372a6c0ec (diff) |
WinGui: Various fixes and improvements to validation handling and options in the UI.
- Fixed add to queue error handling on 2 code paths that ignored errors returned.
- AutoName will now guarantee a unique filename rather than stop after the first attempt.
- Options Pane now lists the available format and path variables that can be used in the UI (rather than the tooltip)
- Ordering of validation rules changed to be more sensible, especially when handling paths that end up same as source.
Diffstat (limited to 'win/CS/HandBrakeWPF/Commands')
-rw-r--r-- | win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs b/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs index 5e014edbd..117ea1eb3 100644 --- a/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs +++ b/win/CS/HandBrakeWPF/Commands/ProcessShortcutCommand.cs @@ -75,7 +75,7 @@ namespace HandBrakeWPF.Commands // Add to Queue (Ctrl+A)
if (gesture.Modifiers == ModifierKeys.Control && gesture.Key == Key.A)
{
- mainViewModel.AddToQueue();
+ mainViewModel.AddToQueueWithErrorHandling();
}
// Add all to Queue (Alt+A)
|