|
|
@@ -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
|
|
|
}
|
|
|
|
|
|
|