From c285de87d4d6792630f948f917fa44533ab03114 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Fri, 22 Sep 2017 01:15:28 +0300 Subject: [PATCH] Don't use margins in FileSystemPathEdit widgets. Introduced in 30081e0. --- src/gui/fspathedit.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/fspathedit.cpp b/src/gui/fspathedit.cpp index 66d3ed314..a9b4a6e59 100644 --- a/src/gui/fspathedit.cpp +++ b/src/gui/fspathedit.cpp @@ -182,6 +182,7 @@ FileSystemPathEdit::FileSystemPathEdit(Private::FileEditorWithCompletion *editor editor->widget()->setParent(this); QHBoxLayout *layout = new QHBoxLayout(this); + layout->setContentsMargins(0, 0, 0, 0); layout->addWidget(editor->widget()); layout->addWidget(d->m_browseBtn);