summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMehdi Fekari <mfekari@rim.com>2013-03-14 13:54:45 +0100
committerEike Ziller <eike.ziller@digia.com>2013-03-14 18:12:03 +0100
commitb848461891e143e0e5d8e366a5e437849a6e4abf (patch)
tree05bcf7150373385d99107a17f62e497be4482cb6
parent1c853c4ebab1cd5e93a8325c9228760b0d7a6a98 (diff)
downloadqt-creator-b848461891e143e0e5d8e366a5e437849a6e4abf.tar.gz
Utils: Change the minimum width size of PathChooser
This fixes an alignment issue on the BlackBerry device configuration widget Change-Id: I8e48432713b14f923715bebc52317e50ff4e304f Reviewed-by: Eike Ziller <eike.ziller@digia.com>
-rw-r--r--src/libs/utils/pathchooser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/utils/pathchooser.cpp b/src/libs/utils/pathchooser.cpp
index affce62625..256599e164 100644
--- a/src/libs/utils/pathchooser.cpp
+++ b/src/libs/utils/pathchooser.cpp
@@ -250,7 +250,7 @@ PathChooser::PathChooser(QWidget *parent) :
connect(d->m_lineEdit, SIGNAL(validChanged(bool)), this, SIGNAL(validChanged(bool)));
connect(d->m_lineEdit, SIGNAL(editingFinished()), this, SIGNAL(editingFinished()));
- d->m_lineEdit->setMinimumWidth(200);
+ d->m_lineEdit->setMinimumWidth(120);
d->m_hLayout->addWidget(d->m_lineEdit);
d->m_hLayout->setSizeConstraint(QLayout::SetMinimumSize);