Skip to content

Commit

Permalink
[Processing] Fix behaviour of closeEvent in AlgorithmDialogBase
Browse files Browse the repository at this point in the history
Otherwise finished signal is not emitted when dialog closes
  • Loading branch information
radosuav committed Jan 11, 2016
1 parent 716664e commit fe71a3f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/plugins/processing/gui/AlgorithmDialogBase.py
Expand Up @@ -112,6 +112,7 @@ def linkClicked(url):

def closeEvent(self, evt):
self.settings.setValue("/Processing/dialogBase", self.saveGeometry())
super(AlgorithmDialogBase, self).closeEvent(evt)

def setMainWidget(self):
self.tabWidget.widget(0).layout().addWidget(self.mainWidget)
Expand Down

0 comments on commit fe71a3f

Please sign in to comment.