Navigation Menu

Skip to content

Commit

Permalink
[processing] set window flags for modeler dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Jan 2, 2014
1 parent dd6dffc commit 51fb4f5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/plugins/processing/modeler/ModelerDialog.py
Expand Up @@ -57,6 +57,10 @@ def __init__(self, alg=None):
self.hasChanged = False
self.setupUi(self)

self.setWindowFlags(Qt.WindowMinimizeButtonHint |
Qt.WindowMaximizeButtonHint |
Qt.WindowCloseButtonHint)

self.tabWidget.setCurrentIndex(0)
self.scene = ModelerScene(self)
self.scene.setSceneRect(QRectF(0, 0, 4000, 4000))
Expand Down

0 comments on commit 51fb4f5

Please sign in to comment.