From d6e787e770f43b87138f68d9055d888e9a03e98e Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Tue, 11 Dec 2018 09:52:46 +0100 Subject: [PATCH] QmlDesigner: Increase minimum width of property editor This removes a few glitches. Change-Id: I30a4d4551d7061a8000d7f8be69e8166b2a95305 Reviewed-by: Tim Jenssen --- .../components/propertyeditor/propertyeditorview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorview.cpp index 98df2867fc2..0467355bf43 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);