Skip to content

Commit

Permalink
[processing] avoid overlapping UI (#3616)
Browse files Browse the repository at this point in the history
Super small changes that avoids the overlapping of multi selection widget with other widgets
  • Loading branch information
ghtmtt authored and m-kuhn committed Oct 17, 2016
1 parent e639730 commit f3637b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ListMultiselectWidget.py
Expand Up @@ -149,7 +149,7 @@ def _do_move(self, fromList, toList):

def _setupUI(self):
self.setSizePolicy(
QSizePolicy.Preferred, QSizePolicy.Ignored)
QSizePolicy.Preferred, QSizePolicy.Preferred)

self.setMinimumHeight(180)

Expand Down

0 comments on commit f3637b1

Please sign in to comment.