QML Observer: Changed warning message to mention reloading

This commit is contained in:
Lasse Holmstedt
2010-08-02 10:47:39 +02:00
parent 5165ce16b9
commit 393ca274d9

View File

@@ -518,8 +518,9 @@ void QmlJSLiveTextPreview::showExperimentalWarning()
{ {
Core::EditorManager *em = Core::EditorManager::instance(); Core::EditorManager *em = Core::EditorManager::instance();
em->showEditorInfoBar(Constants::INFO_EXPERIMENTAL, 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. " tr("You changed a QML file in Live Preview mode, which modifies the running QML application. "
"This feature is experimental, and behavior can be unexpected."), "In case of unexpected behavior, please reload the QML application. "
),
tr("Disable Live Preview"), this, SLOT(disableLivePreview())); tr("Disable Live Preview"), this, SLOT(disableLivePreview()));
} }