diff options
author | sr55 <[email protected]> | 2017-11-02 20:29:58 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-11-02 20:29:58 +0000 |
commit | fee486545a4e5a641fb97468bb1b9ca8bdd57f24 (patch) | |
tree | 202d21a3027395145485457e7bb9a61645d216e3 /win | |
parent | ca5dd0b699f361e89d0d67b2cc36874a48d7b8c1 (diff) |
WinGui: Fix Window Title not resetting when queue finishing.
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index 68e97e284..9478680eb 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -2610,6 +2610,8 @@ namespace HandBrakeWPF.ViewModels }
this.ProgramStatusLabel = Resources.Main_QueueFinished + errorDesc;
+ this.WindowTitle = Resources.HandBrake_Title;
+ this.notifyIconService.SetTooltip(this.WindowTitle);
if (this.windowsSeven.IsWindowsSeven)
{
|