mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:28:34 +00:00
Show/Hide UI Hotkey fix on Avalonia (#5133)
* fix show/hide ui for ava * revert style * unbound by default * revert
This commit is contained in:
parent
193ca3c9a2
commit
638f3761f3
|
@ -1044,7 +1044,7 @@ namespace Ryujinx.Ava
|
|||
ScreenshotRequested = true;
|
||||
break;
|
||||
case KeyboardHotkeyState.ShowUi:
|
||||
_viewModel.ShowMenuAndStatusBar = true;
|
||||
_viewModel.ShowMenuAndStatusBar = !_viewModel.ShowMenuAndStatusBar;
|
||||
break;
|
||||
case KeyboardHotkeyState.Pause:
|
||||
if (_viewModel.IsPaused)
|
||||
|
|
Loading…
Reference in a new issue