Skip to content

Commit 4bae647

Browse files
committedSep 15, 2017
Use smaller margins for checkboxes panel
1 parent ecf7dd5 commit 4bae647

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎python/plugins/processing/gui/CheckboxesPanel.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ def __init__(self, options, multiple, columns=2, parent=None):
5656
self._buttonGroup = QButtonGroup()
5757
self._buttonGroup.setExclusive(not multiple)
5858
layout = QGridLayout()
59+
layout.setContentsMargins(0, 0, 0, 0)
60+
layout.setMargin(0)
5961
for i, (v, t) in enumerate(self._options):
6062
if multiple:
6163
button = QCheckBox(t)

0 commit comments

Comments
 (0)
Please sign in to comment.