forked from qt-creator/qt-creator
QmlDesigner: Replace misleading default label in Design mode
People will only see the default widget while Bauhaus initializes
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user