mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
swap order of finished signal emit
This commit is contained in:
parent
37101a5f54
commit
76e7ced648
1 changed files with 1 additions and 1 deletions
|
|
@ -85,8 +85,8 @@ class PasswordDialog(QtWidgets.QDialog):
|
||||||
super(PasswordDialog, self).keyPressEvent(event)
|
super(PasswordDialog, self).keyPressEvent(event)
|
||||||
|
|
||||||
def closeEvent(self, event):
|
def closeEvent(self, event):
|
||||||
self.finished.emit(self.result())
|
|
||||||
super(PasswordDialog, self).closeEvent(event)
|
super(PasswordDialog, self).closeEvent(event)
|
||||||
|
self.finished.emit(self.result())
|
||||||
|
|
||||||
def _on_ok_click(self):
|
def _on_ok_click(self):
|
||||||
input_value = self.password_input.text()
|
input_value = self.password_input.text()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue