Qt: Swap console/emulation icons

Better match I think.
This commit is contained in:
Stenzek 2025-06-22 02:32:26 +10:00
parent aafd72efba
commit bf36432432
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -370,7 +370,7 @@
</action> </action>
<action name="actionConsoleSettings"> <action name="actionConsoleSettings">
<property name="icon"> <property name="icon">
<iconset theme="chip-2-line"/> <iconset theme="emulation-line"/>
</property> </property>
<property name="text"> <property name="text">
<string>C&amp;onsole</string> <string>C&amp;onsole</string>
@ -378,7 +378,7 @@
</action> </action>
<action name="actionEmulationSettings"> <action name="actionEmulationSettings">
<property name="icon"> <property name="icon">
<iconset theme="emulation-line"/> <iconset theme="chip-2-line"/>
</property> </property>
<property name="text"> <property name="text">
<string>E&amp;mulation</string> <string>E&amp;mulation</string>

View File

@ -104,12 +104,12 @@ void SettingsWindow::addPages()
"used.<br><br>Mouse over an option for additional information, and Shift+Wheel to scroll this panel.")); "used.<br><br>Mouse over an option for additional information, and Shift+Wheel to scroll this panel."));
addWidget( addWidget(
m_console_settings = new ConsoleSettingsWidget(this, m_ui.settingsContainer), tr("Console"), m_console_settings = new ConsoleSettingsWidget(this, m_ui.settingsContainer), tr("Console"),
QStringLiteral("chip-2-line"), QStringLiteral("emulation-line"),
tr("<strong>Console Settings</strong><hr>These options determine the configuration of the simulated " tr("<strong>Console Settings</strong><hr>These options determine the configuration of the simulated "
"console.<br><br>Mouse over an option for additional information, and Shift+Wheel to scroll this panel.")); "console.<br><br>Mouse over an option for additional information, and Shift+Wheel to scroll this panel."));
addWidget( addWidget(
m_emulation_settings = new EmulationSettingsWidget(this, m_ui.settingsContainer), tr("Emulation"), m_emulation_settings = new EmulationSettingsWidget(this, m_ui.settingsContainer), tr("Emulation"),
QStringLiteral("emulation-line"), QStringLiteral("chip-2-line"),
tr("<strong>Emulation Settings</strong><hr>These options determine the speed and runahead behavior of the " tr("<strong>Emulation Settings</strong><hr>These options determine the speed and runahead behavior of the "
"system.<br><br>Mouse over an option for additional information, and Shift+Wheel to scroll this panel.")); "system.<br><br>Mouse over an option for additional information, and Shift+Wheel to scroll this panel."));