Browse Source

Don't use HTML in tray icon pop-up on OSX

Closes #2830.
adaptive-webui-19844
Gabriele 10 years ago
parent
commit
a582f2e5ed
  1. 2
      src/gui/mainwindow.cpp

2
src/gui/mainwindow.cpp

@ -1222,7 +1222,7 @@ void MainWindow::updateGUI() @@ -1222,7 +1222,7 @@ void MainWindow::updateGUI()
{
// update global informations
if (systrayIcon) {
#if defined(Q_OS_UNIX)
#if (defined(Q_OS_UNIX) && !defined(Q_OS_MAC))
QString html = "<div style='background-color: #678db2; color: #fff;height: 18px; font-weight: bold; margin-bottom: 5px;'>";
html += "qBittorrent";
html += "</div>";

Loading…
Cancel
Save