Skip to content

Commit e1186f1

Browse files
committedDec 5, 2013
[processing] explicitly set window flags for script editor
1 parent 5e5e50a commit e1186f1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ def __init__(self, algType, alg):
6060
QDialog.__init__(self)
6161
self.setupUi(self)
6262

63+
self.setWindowFlags(Qt.WindowMinimizeButtonHint |
64+
Qt.WindowMaximizeButtonHint |
65+
Qt.WindowCloseButtonHint)
66+
6367
# Set icons
6468
self.btnSave.setIcon(
6569
QgsApplication.getThemeIcon('/mActionFileSave.svg'))

0 commit comments

Comments
 (0)
Please sign in to comment.