Skip to content

Commit

Permalink
Systray: Workaround for issue with Qt 5.5.0 #3656
Browse files Browse the repository at this point in the history
  • Loading branch information
ckamm committed Aug 21, 2015
1 parent 14d1919 commit 3414b58
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/gui/owncloudgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,14 @@ void ownCloudGui::setupContextMenu()
_contextMenu->addAction(_actionLogin);
}
_contextMenu->addAction(_actionQuit);

// Workaround for #3656, Qt 5.5.0 + dbus based tray integration.
#ifdef Q_OS_LINUX
#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
_tray->hide();
_tray->show();
#endif
#endif
}


Expand Down

0 comments on commit 3414b58

Please sign in to comment.