Skip to content

Commit

Permalink
Use smaller margins for checkboxes panel
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 15, 2017
1 parent ecf7dd5 commit 4bae647
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/processing/gui/CheckboxesPanel.py
Expand Up @@ -56,6 +56,8 @@ def __init__(self, options, multiple, columns=2, parent=None):
self._buttonGroup = QButtonGroup()
self._buttonGroup.setExclusive(not multiple)
layout = QGridLayout()
layout.setContentsMargins(0, 0, 0, 0)
layout.setMargin(0)
for i, (v, t) in enumerate(self._options):
if multiple:
button = QCheckBox(t)
Expand Down

0 comments on commit 4bae647

Please sign in to comment.