qt: Fix global settings being inaccessible on macOS. (#6235)
This commit is contained in:
parent
f18437e59f
commit
f5ed7c775d
|
@ -264,6 +264,9 @@
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>About Citra</string>
|
<string>About Citra</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="menuRole">
|
||||||
|
<enum>QAction::AboutRole</enum>
|
||||||
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="action_Single_Window_Mode">
|
<action name="action_Single_Window_Mode">
|
||||||
<property name="checkable">
|
<property name="checkable">
|
||||||
|
@ -287,6 +290,9 @@
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Configure...</string>
|
<string>Configure...</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="menuRole">
|
||||||
|
<enum>QAction::PreferencesRole</enum>
|
||||||
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="action_Cheats">
|
<action name="action_Cheats">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
@ -549,6 +555,9 @@
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Configure Current Game...</string>
|
<string>Configure Current Game...</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="menuRole">
|
||||||
|
<enum>QAction::NoRole</enum>
|
||||||
|
</property>
|
||||||
</action>
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources/>
|
||||||
|
|
Loading…
Reference in New Issue