diff --git a/modules/gui/qt/maininterface/mainctx.hpp b/modules/gui/qt/maininterface/mainctx.hpp index 5936729b96e3da5665407a16e979b7481437fdfe..fc0b172aeae82229d491c529b9d91b9684cdf316 100644 --- a/modules/gui/qt/maininterface/mainctx.hpp +++ b/modules/gui/qt/maininterface/mainctx.hpp @@ -258,6 +258,19 @@ public: int mouseHideTimeout() const { return m_mouseHideTimeout; } + Q_INVOKABLE static inline bool useTopLevelWindowForToolTip() { + assert(qGuiApp); + if (QT_VERSION < QT_VERSION_CHECK(6, 8, 0)) + return false; // Feature is not available +#ifndef QT_STATIC // We have patched contrib Qt to fix both of the spotted Qt bugs + if (QT_VERSION < QT_VERSION_CHECK(6, 8, 2)) + return false; // This feature was not tested properly upstream, and often causes crashes (QTBUG-131898, #28919). +#endif + if (qGuiApp->platformName().startsWith(QLatin1String("wayland"))) + return false; // Wayland is too buggy (tested with KWin 6.2), and there is no sign it'll improve by Qt 6.8.2 (QTBUG-131899). + return true; + } + Q_INVOKABLE static inline void setCursor(Qt::CursorShape cursor) { QApplication::setOverrideCursor(QCursor(cursor)); } Q_INVOKABLE static inline void restoreCursor(void) { QApplication::restoreOverrideCursor(); } diff --git a/modules/gui/qt/widgets/qml/ToolTipExt.qml b/modules/gui/qt/widgets/qml/ToolTipExt.qml index 55cacf85019f5a707d4eb211535cca4507cb8e67..68a3a2fbcee436f69e48da542cef6ed920355674 100644 --- a/modules/gui/qt/widgets/qml/ToolTipExt.qml +++ b/modules/gui/qt/widgets/qml/ToolTipExt.qml @@ -19,6 +19,7 @@ import QtQuick import QtQuick.Templates as T +import VLC.MainInterface import VLC.Style T.ToolTip { @@ -40,9 +41,10 @@ T.ToolTip { closePolicy: T.Popup.CloseOnEscape | T.Popup.CloseOnPressOutsideParent | T.Popup.CloseOnReleaseOutsideParent Component.onCompleted: { - if (typeof control.popupType === "number") - if (Qt.platform.pluginName !== "wayland") // FIXME: Qt 6.8.0 Wayland is not reliable - control.popupType = 1 // Popup.Window + if (MainCtx.useTopLevelWindowForToolTip()) { + console.assert(typeof control.popupType === "number") + control.popupType = 1 // Popup.Window + } } // NOTE: The tool tip often moves around, particularly noticable