diff options
author | Alessandro Portale <[email protected]> | 2015-02-24 11:14:53 +0100 |
---|---|---|
committer | Alessandro Portale <[email protected]> | 2015-02-24 11:45:53 +0000 |
commit | fb567a224dc26551237bb78d7f81b551f5d5ba98 (patch) | |
tree | 69976409bd1582e98d4498809c86fe139c0bdd6c /src/plugins/debugger/debuggersourcepathmappingwidget.cpp | |
parent | e5784b6964894d6a60b88981f5b7670db64ac34d (diff) |
Fix layouts for OSX: Set the obligatory ExpandingFieldsGrow
In Qt Creator, we want line edits to take up the free horizontal
space.
Change-Id: I4ff78035ab2481cc2f944fc02569638f06f0b090
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggersourcepathmappingwidget.cpp')
-rw-r--r-- | src/plugins/debugger/debuggersourcepathmappingwidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp index 1f9dfaa43e2..8aa29de2824 100644 --- a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp +++ b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp @@ -275,6 +275,7 @@ DebuggerSourcePathMappingWidget::DebuggerSourcePathMappingWidget(QWidget *parent editTargetLabel->setBuddy(m_targetChooser); m_targetChooser->setToolTip(targetToolTip); editLayout->addRow(editTargetLabel, m_targetChooser); + editLayout->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow); auto chooser = new Core::VariableChooser(this); chooser->addSupportedWidget(m_targetChooser->lineEdit()); |