From d83a68c6edcdd6bdecef9bf6a7ab66f5a00c90e2 Mon Sep 17 00:00:00 2001
From: Thomas Hartmann <Thomas.Hartmann@nokia.com>
Date: Wed, 24 Mar 2010 17:07:44 +0100
Subject: [PATCH] QmlDesigner.propertyEditor: reducing minimum size from 360 to
 300

---
 .../qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml | 2 +-
 .../qmldesigner/components/propertyeditor/propertyeditor.cpp  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml
index 4d1136c8b26..14bd2d79665 100644
--- a/share/qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml
+++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/PropertyFrame.qml
@@ -4,6 +4,6 @@ import Bauhaus 1.0
 WidgetFrame {
    id: propertyFrame;
 
-    minimumWidth: 360;
+    minimumWidth: 300;
     styleSheetFile: "propertyEditor.css";
 }
diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp
index 3251287bb63..ba83b7ccac6 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp
+++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp
@@ -257,7 +257,7 @@ PropertyEditor::PropertyEditor(QWidget *parent) :
     file.open(QFile::ReadOnly);
     QString styleSheet = QLatin1String(file.readAll());
     m_stackedWidget->setStyleSheet(styleSheet);
-    m_stackedWidget->setMinimumWidth(360);
+    m_stackedWidget->setMinimumWidth(300);
     m_collapseButton->raise();
     m_collapseButton->show();
     connect(m_collapseButton, SIGNAL(expand()), this, SLOT(expand()));
@@ -465,7 +465,7 @@ void PropertyEditor::changeExpression(const QString &name)
 
 void PropertyEditor::expand()
 {
-    m_stackedWidget->setMinimumWidth(360);
+    m_stackedWidget->setMinimumWidth(300);
     m_stackedWidget->setMaximumWidth(1000);
     m_stackedWidget->parentWidget()->layout()->update();
 
-- 
GitLab