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 name="actionConsoleSettings">
<property name="icon">
<iconset theme="chip-2-line"/>
<iconset theme="emulation-line"/>
</property>
<property name="text">
<string>C&amp;onsole</string>
@ -378,7 +378,7 @@
</action>
<action name="actionEmulationSettings">
<property name="icon">
<iconset theme="emulation-line"/>
<iconset theme="chip-2-line"/>
</property>
<property name="text">
<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."));
addWidget(
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 "
"console.<br><br>Mouse over an option for additional information, and Shift+Wheel to scroll this panel."));
addWidget(
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 "
"system.<br><br>Mouse over an option for additional information, and Shift+Wheel to scroll this panel."));