diff options
author | sr55 <[email protected]> | 2018-09-14 20:49:27 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-09-14 20:49:27 +0100 |
commit | 4d7a05ed8dd8ab8fb04ddf6722a30e9b05485933 (patch) | |
tree | 7e0dd49c5c8fd548b9d7967f1be5784bdeb3055a /win/CS/HandBrakeWPF/ViewModels/Interfaces/IOptionsViewModel.cs | |
parent | 09ed0b5574c92972b23ae44e60c718450d16d388 (diff) |
WinGui: When opening preferences, reset to General tab if the last tab used was the About tab. #1592
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces/IOptionsViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IOptionsViewModel.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IOptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IOptionsViewModel.cs index e37f1da07..827d0a0fb 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IOptionsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IOptionsViewModel.cs @@ -17,6 +17,11 @@ namespace HandBrakeWPF.ViewModels.Interfaces public interface IOptionsViewModel
{
/// <summary>
+ /// The currently selected Tab in the options pane.
+ /// </summary>
+ OptionsTab SelectedTab { get; }
+
+ /// <summary>
/// The goto tab.
/// </summary>
/// <param name="tab">
|