From ff155a2e42619998b459ba30114a48223dc9dc4f Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Wed, 14 Mar 2018 14:45:29 +0900 Subject: [PATCH] Improve "Import Existing Build..." in project pane The action is for active project. The button should be under active project. Change-Id: Ie0029bff02f58dbd5cb4c2a17bc086c168a522dc Reviewed-by: Tobias Hunger --- src/plugins/projectexplorer/projectwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/projectwindow.cpp b/src/plugins/projectexplorer/projectwindow.cpp index f1293d5b7a8..41659d3eeb7 100644 --- a/src/plugins/projectexplorer/projectwindow.cpp +++ b/src/plugins/projectexplorer/projectwindow.cpp @@ -421,10 +421,10 @@ public: innerLayout->setSpacing(10); innerLayout->setContentsMargins(14, innerLayout->spacing(), 14, 0); innerLayout->addWidget(m_manageKits); - innerLayout->addWidget(m_importBuild); innerLayout->addSpacerItem(new QSpacerItem(10, 30, QSizePolicy::Maximum, QSizePolicy::Maximum)); innerLayout->addWidget(activeLabel); innerLayout->addWidget(m_projectSelection); + innerLayout->addWidget(m_importBuild); innerLayout->addWidget(m_selectorTree); auto selectorLayout = new QVBoxLayout(selectorView);