This commit is contained in:
Kovid Goyal 2022-07-17 08:00:09 +05:30
commit a4d8095496
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -33,8 +33,8 @@ QHoverEvent.posF = lambda self: self.position()
# Restore the removed exec_ method # Restore the removed exec_ method
def exec_(self): def exec_(self, *args, **kwargs):
return self.exec() return self.exec(*args, **kwargs)
QDialog.exec_ = exec_ QDialog.exec_ = exec_