Skip to content
Snippets Groups Projects
Commit f25e66aa authored by Sébastien Blin's avatar Sébastien Blin
Browse files

utilsadapter: avoid wrong geometry when getting systray visibility

Change-Id: I05d9770b7198e784356c10164c935b0844cd53b0
parent 79b19aec
Branches
Tags
No related merge requests found
......@@ -829,6 +829,10 @@ UtilsAdapter::isSystemTrayIconVisible()
{
if (!systemTray_)
return false;
// https://bugreports.qt.io/browse/QTBUG-118656
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
return true;
#endif
return systemTray_->geometry() != QRect();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment