Implement "hide UI" option (#2411)

* Implement jduncanator method

* Rename function/button ID

* Move option to Actions menu (makes no sense while emulation is inactive...)
This commit is contained in:
ooa113y 2021-07-24 21:48:00 +03:00 committed by GitHub
parent 8c7986eb58
commit 06cd3abe6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 1 deletions

View file

@ -6,6 +6,7 @@
<property name="can_focus">False</property>
<property name="title" translatable="yes">Ryujinx</property>
<property name="window_position">center</property>
<signal name="key-release-event" handler="Focus_Menu_Bar" swapped="no" />
<child>
<object class="GtkBox" id="_box">
<property name="visible">True</property>
@ -14,7 +15,7 @@
<child>
<object class="GtkMenuBar" id="_menuBar">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="can_focus">True</property>
<child>
<object class="GtkMenuItem" id="_fileMenu">
<property name="visible">True</property>
@ -338,6 +339,15 @@
<signal name="activate" handler="Take_Screenshot" swapped="no"/>
</object>
</child>
<child>
<object class="GtkMenuItem" id="_hideUi">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">Hide UI (Alt to show)</property>
<property name="use_underline">True</property>
<signal name="activate" handler="HideUi_Pressed" swapped="no" />
</object>
</child>
</object>
</child>
</object>