From 393ca274d9a4a66c743c6d09bf566513640947b1 Mon Sep 17 00:00:00 2001 From: Lasse Holmstedt <lasse.holmstedt@nokia.com> Date: Mon, 2 Aug 2010 10:47:39 +0200 Subject: [PATCH] QML Observer: Changed warning message to mention reloading --- src/plugins/qmljsinspector/qmljslivetextpreview.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plugins/qmljsinspector/qmljslivetextpreview.cpp b/src/plugins/qmljsinspector/qmljslivetextpreview.cpp index 4c1707254a0..1078e0e359f 100644 --- a/src/plugins/qmljsinspector/qmljslivetextpreview.cpp +++ b/src/plugins/qmljsinspector/qmljslivetextpreview.cpp @@ -518,8 +518,9 @@ void QmlJSLiveTextPreview::showExperimentalWarning() { Core::EditorManager *em = Core::EditorManager::instance(); em->showEditorInfoBar(Constants::INFO_EXPERIMENTAL, - tr("You changed a QML file in in Live Preview mode, and the changes were applied to the running QML application. " - "This feature is experimental, and behavior can be unexpected."), + tr("You changed a QML file in Live Preview mode, which modifies the running QML application. " + "In case of unexpected behavior, please reload the QML application. " + ), tr("Disable Live Preview"), this, SLOT(disableLivePreview())); } -- GitLab