aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2018-12-11 09:52:46 +0100
committerTim Jenssen <tim.jenssen@qt.io>2018-12-18 08:54:00 +0000
commitd6e787e770f43b87138f68d9055d888e9a03e98e (patch)
tree51e0fcb33d1ac3d267783ba888367fd3e645c6ce
parent2a67a86c2ff0f5a33dee133dc45744d1c5a179c3 (diff)
QmlDesigner: Increase minimum width of property editor
This removes a few glitches. Change-Id: I30a4d4551d7061a8000d7f8be69e8166b2a95305 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
-rw-r--r--src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp
index 98df2867fc..0467355bf4 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp
+++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp
@@ -88,7 +88,7 @@ PropertyEditorView::PropertyEditorView(QWidget *parent) :
m_stackedWidget->setStyleSheet(Theme::replaceCssColors(
QString::fromUtf8(Utils::FileReader::fetchQrc(QStringLiteral(":/qmldesigner/stylesheet.css")))));
- m_stackedWidget->setMinimumWidth(320);
+ m_stackedWidget->setMinimumWidth(340);
m_stackedWidget->move(0, 0);
connect(m_stackedWidget, &PropertyEditorWidget::resized, this, &PropertyEditorView::updateSize);