mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-04-11 18:20:02 -04:00
Merge pull request #1736 from cg2121/icons-from-theme
UI: Use icons from theme on Linux
This commit is contained in:
@@ -4975,7 +4975,8 @@ inline void OBSBasic::OnActivate()
|
||||
UpdateProcessPriority();
|
||||
|
||||
if (trayIcon)
|
||||
trayIcon->setIcon(QIcon(":/res/images/tray_active.png"));
|
||||
trayIcon->setIcon(QIcon::fromTheme("obs-tray-active",
|
||||
QIcon(":/res/images/tray_active.png")));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4988,7 +4989,8 @@ inline void OBSBasic::OnDeactivate()
|
||||
ClearProcessPriority();
|
||||
|
||||
if (trayIcon)
|
||||
trayIcon->setIcon(QIcon(":/res/images/obs.png"));
|
||||
trayIcon->setIcon(QIcon::fromTheme("obs-tray",
|
||||
QIcon(":/res/images/obs.png")));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6637,8 +6639,8 @@ void OBSBasic::ToggleShowHide()
|
||||
|
||||
void OBSBasic::SystemTrayInit()
|
||||
{
|
||||
trayIcon.reset(new QSystemTrayIcon(QIcon(":/res/images/obs.png"),
|
||||
this));
|
||||
trayIcon.reset(new QSystemTrayIcon(QIcon::fromTheme("obs-tray",
|
||||
QIcon(":/res/images/obs.png")), this));
|
||||
trayIcon->setToolTip("OBS Studio");
|
||||
|
||||
showHide = new QAction(QTStr("Basic.SystemTray.Show"),
|
||||
|
||||
Reference in New Issue
Block a user