QmlDesigner: Replace misleading default label in Design mode

People will only see the default widget while Bauhaus initializes
This commit is contained in:
Kai Koehne
2010-02-28 14:35:15 +01:00
parent 37df9fcb78
commit 7a4213107f

View File

@@ -496,7 +496,7 @@ DesignModeWidget::DesignModeWidget(QWidget *parent) :
m_selectAllAction = new Utils::ParameterAction(tr("Select &All"), tr("Select All \"%1\""), Utils::ParameterAction::EnabledWithParameter, this);
connect(m_selectAllAction, SIGNAL(triggered()), this, SLOT(selectAll()));
QLabel *defaultBackground = new QLabel(tr("Open/Create a qml file first."));
QLabel *defaultBackground = new QLabel(tr("Loading ..."));
defaultBackground->setAlignment(Qt::AlignCenter);
m_documentWidgetStack->addWidget(defaultBackground);