diff options
author | Ac_K <Acoustik666@gmail.com> | 2023-06-03 11:03:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-03 11:03:34 +0200 |
commit | 9367e3c35d4ad26625e5bec7d144cc12ba0ee069 (patch) | |
tree | e0b63797b69859fdb1390d4d29d40c2d3852ae25 | |
parent | 52cf1418743950fde932e92fcf9655d5c392d9d7 (diff) |
ava: Fix Open Applet menu enabled (#5206)1.1.859
Currently, the `Open Applet` menu is still enabled when a guest is running, which is wrong. This is not fixed by refreshing the property binding on `IsEnabled`.
-rw-r--r-- | src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs index e7013968..409ccad3 100644 --- a/src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs +++ b/src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs @@ -257,6 +257,7 @@ namespace Ryujinx.Ava.UI.ViewModels OnPropertyChanged(); OnPropertyChanged(nameof(EnableNonGameRunningControls)); + OnPropertyChanged(nameof(IsAppletMenuActive)); OnPropertyChanged(nameof(StatusBarVisible)); OnPropertyChanged(nameof(ShowFirmwareStatus)); } |