Skip to content

Commit db7d7f6

Browse files
author
volayaf
committed
removed ? button in parametersdialog
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@137 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
1 parent af6131d commit db7d7f6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/sextante/gui/ParametersDialog.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
class ParametersDialog(QtGui.QDialog):
3131
'''the default parameters dialog, to be used when an algorithm is called from the toolbox'''
3232
def __init__(self, alg):
33-
QtGui.QDialog.__init__(self)
34-
#self.setModal(False)
33+
QtGui.QDialog.__init__(self, None, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint)
3534
self.ui = Ui_ParametersDialog()
3635
self.ui.setupUi(self, alg)
3736
self.executed = False

0 commit comments

Comments
 (0)