diff --git a/src/plugins/projectexplorer/buildsettingspropertiespage.cpp b/src/plugins/projectexplorer/buildsettingspropertiespage.cpp index b38baf82902..8a48225d515 100644 --- a/src/plugins/projectexplorer/buildsettingspropertiespage.cpp +++ b/src/plugins/projectexplorer/buildsettingspropertiespage.cpp @@ -139,6 +139,7 @@ BuildSettingsWidget::BuildSettingsWidget(Project *project) : m_project(project) { QVBoxLayout *vbox = new QVBoxLayout(this); + vbox->setContentsMargins(0, -1, 0, -1); QHBoxLayout *hbox = new QHBoxLayout(); hbox->addWidget(new QLabel(tr("Build Configuration:"), this)); m_buildConfigurationComboBox = new QComboBox(this); diff --git a/src/plugins/projectexplorer/dependenciespanel.cpp b/src/plugins/projectexplorer/dependenciespanel.cpp index 5e6a313516e..3b5e51f8387 100644 --- a/src/plugins/projectexplorer/dependenciespanel.cpp +++ b/src/plugins/projectexplorer/dependenciespanel.cpp @@ -163,6 +163,7 @@ DependenciesWidget::DependenciesWidget(SessionManager *session, , m_model(new DependenciesModel(session, project, this)) { QHBoxLayout *layout = new QHBoxLayout(this); + layout->setContentsMargins(0, -1, 0, -1); QTreeView *treeView = new QTreeView(this); treeView->setModel(m_model); treeView->setHeaderHidden(true); diff --git a/src/plugins/projectexplorer/editorsettingspropertiespage.ui b/src/plugins/projectexplorer/editorsettingspropertiespage.ui index 3ac801e2242..1f97ce0f0b7 100644 --- a/src/plugins/projectexplorer/editorsettingspropertiespage.ui +++ b/src/plugins/projectexplorer/editorsettingspropertiespage.ui @@ -2,18 +2,29 @@ ProjectExplorer::Internal::EditorSettingsPropertiesPage - - - QFormLayout::ExpandingFieldsGrow + + + 0 + 0 + 275 + 44 + + + + + 0 - + + 0 + + Default File Encoding: - + diff --git a/src/plugins/projectexplorer/environmenteditmodel.cpp b/src/plugins/projectexplorer/environmenteditmodel.cpp index e0dc0b92f8d..6c5bd757523 100644 --- a/src/plugins/projectexplorer/environmenteditmodel.cpp +++ b/src/plugins/projectexplorer/environmenteditmodel.cpp @@ -434,6 +434,7 @@ EnvironmentWidget::EnvironmentWidget(QWidget *parent) m_summaryPage = new QWidget(); addWidget(m_summaryPage); QVBoxLayout *vbox = new QVBoxLayout(m_summaryPage); + vbox->setContentsMargins(0, -1, 0, -1); m_summaryText = new QLabel(this); m_summaryText->setText(""); diff --git a/src/plugins/projectexplorer/runsettingspropertiespage.ui b/src/plugins/projectexplorer/runsettingspropertiespage.ui index 2daaa3cfae3..f72388829ec 100644 --- a/src/plugins/projectexplorer/runsettingspropertiespage.ui +++ b/src/plugins/projectexplorer/runsettingspropertiespage.ui @@ -11,54 +11,28 @@ + + 0 + + + 0 + - - - QFormLayout::ExpandingFieldsGrow - - - - - Active run configuration: + + + + + QFormLayout::ExpandingFieldsGrow - - - - - - - 500 - 16777215 - - - - QComboBox::AdjustToContents - - - 15 - - - - - - - - 0 - 0 - - - - Edit run configuration: - - - runConfigurationCombo - - - - - - - + + + + Active run configuration: + + + + + 500 @@ -73,22 +47,71 @@ - - + + + + + 0 + 0 + + - + + Edit run configuration: + + + runConfigurationCombo - - - - - - - + + + + + + + 500 + 16777215 + + + + QComboBox::AdjustToContents + + + 15 + + + + + + + + + + + + + + + - + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + diff --git a/src/plugins/qt4projectmanager/qt4buildenvironmentwidget.cpp b/src/plugins/qt4projectmanager/qt4buildenvironmentwidget.cpp index 35174eb9471..e7a86cfd66a 100644 --- a/src/plugins/qt4projectmanager/qt4buildenvironmentwidget.cpp +++ b/src/plugins/qt4projectmanager/qt4buildenvironmentwidget.cpp @@ -43,6 +43,7 @@ Qt4BuildEnvironmentWidget::Qt4BuildEnvironmentWidget(Qt4Project *project) : BuildStepConfigWidget(), m_pro(project) { QVBoxLayout *vbox = new QVBoxLayout(this); + vbox->setMargin(0); m_clearSystemEnvironmentCheckBox = new QCheckBox(this); m_clearSystemEnvironmentCheckBox->setText("Clear system environment");