diff options
| author | Liam <byteslice@airmail.cc> | 2022-11-23 12:41:56 -0500 | 
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2022-11-23 12:41:56 -0500 | 
| commit | 9abceaed61d69036df52d4adaf8330eb135396d7 (patch) | |
| tree | 5e6dd2314c32dd5158659b863423f01152d4ba69 | |
| parent | 168c9ee3415bf6400ef0b0cc0eb2dfa73fac2464 (diff) | |
Qt: assign menuRole properties for actions
| -rw-r--r-- | src/yuzu/main.ui | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/src/yuzu/main.ui b/src/yuzu/main.ui index e670acc30..013ba0ceb 100644 --- a/src/yuzu/main.ui +++ b/src/yuzu/main.ui @@ -231,6 +231,9 @@     <property name="text">      <string>Con&figure...</string>     </property> +   <property name="menuRole"> +    <enum>QAction::PreferencesRole</enum> +   </property>    </action>    <action name="action_Display_Dock_Widget_Headers">     <property name="checkable"> @@ -363,6 +366,9 @@     <property name="text">      <string>&Configure TAS...</string>     </property> +   <property name="menuRole"> +    <enum>QAction::NoRole</enum> +   </property>    </action>    <action name="action_Configure_Current_Game">     <property name="enabled"> @@ -371,6 +377,9 @@     <property name="text">      <string>Configure C&urrent Game...</string>     </property> +   <property name="menuRole"> +    <enum>QAction::NoRole</enum> +   </property>    </action>    <action name="action_TAS_Start">     <property name="enabled"> | 
