From b78a7971d93e42c2337595c91a38cbb3691bdcb9 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 22 Mar 2019 21:30:06 -0700 Subject: [PATCH] Fix the launch warning toasts on Qt 5.9 --- app/gui/StreamSegue.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/StreamSegue.qml b/app/gui/StreamSegue.qml index 0197e7a5..312423b1 100644 --- a/app/gui/StreamSegue.qml +++ b/app/gui/StreamSegue.qml @@ -50,7 +50,7 @@ Item { // This toast appears for 3 seconds, just shorter than how long // Session will wait for it to be displayed. This gives it time // to transition to invisible before continuing. - var toast = Qt.createQmlObject('import QtQuick.Controls 2.3; ToolTip {}', parent, '') + var toast = Qt.createQmlObject('import QtQuick.Controls 2.2; ToolTip {}', parent, '') toast.text = text toast.timeout = 3000 toast.visible = true