Browse Source

Don't use margins in FileSystemPathEdit widgets.

Introduced in 30081e0.
adaptive-webui-19844
sledgehammer999 7 years ago
parent
commit
c285de87d4
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2
  1. 1
      src/gui/fspathedit.cpp

1
src/gui/fspathedit.cpp

@ -182,6 +182,7 @@ FileSystemPathEdit::FileSystemPathEdit(Private::FileEditorWithCompletion *editor @@ -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);

Loading…
Cancel
Save