This commit is contained in:
DavidXanatos 2022-09-08 08:24:47 +02:00
parent 594ac27072
commit 4ac59f1d42
4 changed files with 3 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -97,6 +97,7 @@
<file>Actions/Anon.png</file>
<file>Actions/Users.png</file>
<file>Actions/Bug.png</file>
<file>Actions/Alarm.png</file>
</qresource>
<qresource prefix="/Boxes">
<file alias="Empty3">Boxes/sandbox-b-empty.png</file>

View File

@ -651,7 +651,7 @@ void CSandMan::CreateOldMenus()
m_pMenuSettings = m_pMenuOptions->addAction(CSandMan::GetIcon("Settings"), tr("Global Settings"), this, SLOT(OnSettings()));
m_pMenuOptions->addSeparator();
QAction* m_pProgramAlert = m_pMenuOptions->addAction(CSandMan::GetIcon("Ampel"), tr("Program Alerts"), this, SLOT(OnSettingsAction()));
QAction* m_pProgramAlert = m_pMenuOptions->addAction(CSandMan::GetIcon("Alarm"), tr("Program Alerts"), this, SLOT(OnSettingsAction()));
m_pProgramAlert->setData(CSettingsWindow::eProgCtrl);
QAction* m_pWindowsShell = m_pMenuOptions->addAction(CSandMan::GetIcon("Shell"), tr("Windows Shell Integration"), this, SLOT(OnSettingsAction()));
m_pWindowsShell->setData(CSettingsWindow::eShell);

View File

@ -120,7 +120,7 @@ CSettingsWindow::CSettingsWindow(QWidget* parent)
ui.tabs->setTabIcon(eShell, CSandMan::GetIcon("Shell"));
ui.tabs->setTabIcon(eGuiConfig, CSandMan::GetIcon("GUI"));
ui.tabs->setTabIcon(eAdvanced, CSandMan::GetIcon("Advanced"));
ui.tabs->setTabIcon(eProgCtrl, CSandMan::GetIcon("Ampel"));
ui.tabs->setTabIcon(eProgCtrl, CSandMan::GetIcon("Alarm"));
ui.tabs->setTabIcon(eConfigLock, CSandMan::GetIcon("Lock"));
ui.tabs->setTabIcon(eSoftCompat, CSandMan::GetIcon("Compatibility"));
ui.tabs->setTabIcon(eEditIni, CSandMan::GetIcon("EditIni"));