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">
|
||||
<string>About Citra</string>
|
||||
</property>
|
||||
<property name="menuRole">
|
||||
<enum>QAction::AboutRole</enum>
|
||||
</property>
|
||||
</action>
|
||||
<action name="action_Single_Window_Mode">
|
||||
<property name="checkable">
|
||||
|
@ -287,6 +290,9 @@
|
|||
<property name="text">
|
||||
<string>Configure...</string>
|
||||
</property>
|
||||
<property name="menuRole">
|
||||
<enum>QAction::PreferencesRole</enum>
|
||||
</property>
|
||||
</action>
|
||||
<action name="action_Cheats">
|
||||
<property name="text">
|
||||
|
@ -549,6 +555,9 @@
|
|||
<property name="text">
|
||||
<string>Configure Current Game...</string>
|
||||
</property>
|
||||
<property name="menuRole">
|
||||
<enum>QAction::NoRole</enum>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<resources/>
|
||||
|
|
Reference in New Issue