diff --git a/src/libtomahawk/utils/TomahawkUtilsGui.cpp b/src/libtomahawk/utils/TomahawkUtilsGui.cpp index 227dd6d4a..31cda44f1 100644 --- a/src/libtomahawk/utils/TomahawkUtilsGui.cpp +++ b/src/libtomahawk/utils/TomahawkUtilsGui.cpp @@ -358,7 +358,9 @@ bringToFront() return; // "Unminimize" first, otherwise the entry in the taskbar will only flash but the window won't come to front - widget->windowHandle()->showNormal(); + widget->show(); + // widget->windowHandle()->showNormal(); // this is fucked: https://bugreports.qt.io/browse/QTBUG-31117 + widget->windowHandle()->requestActivate(); #ifdef HAVE_X11