Skip to content

Commit

Permalink
Remove question mark from form dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
DanicaSTFC committed Jul 16, 2024
1 parent c6eb12d commit d91a168
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eqt/ui/FormDialog.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from PySide2 import QtWidgets
from PySide2 import QtWidgets, QtCore

from . import UIFormFactory


class FormDialog(QtWidgets.QDialog):
def __init__(self, parent=None, title=None):
super().__init__(parent)
self.setWindowFlag(QtCore.Qt.WindowContextHelpButtonHint, False)

self.buttonBox = QtWidgets.QDialogButtonBox(QtWidgets.QDialogButtonBox.Ok
| QtWidgets.QDialogButtonBox.Cancel)
Expand Down

0 comments on commit d91a168

Please sign in to comment.