diff --git a/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.h b/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.h index 9aebaaeba43b83bfb94a12939a85ecbd70a6a984..8defb789ccf9721d140a2c6b0a1f3405c2bd99de 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.h +++ b/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.h @@ -43,7 +43,7 @@ class SiblingComboBox : public QComboBox Q_PROPERTY(QVariant selectedItemNode READ selectedItemNode WRITE setSelectedItemNode NOTIFY selectedItemNodeChanged) public: - SiblingComboBox(QWidget *parent = 0) : QComboBox(parent) {} + SiblingComboBox(QWidget *parent = 0) : QComboBox(parent) { setMaximumWidth(140); } QVariant itemNode() const { return QVariant::fromValue(m_itemNode.modelNode()); } QVariant selectedItemNode() const { return QVariant::fromValue(m_selectedItemNode.modelNode()); }