1

In PyQt5 I use this code to hide the Windows Dialog help question mark. I cannot find an equivalent flag in PyQt6.

self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint)
Colin Curtain
  • 217
  • 1
  • 10

1 Answers1

1

Resolved, its namespace is:

Qt.WindowType.WindowContextHelpButtonHint
Colin Curtain
  • 217
  • 1
  • 10