Skip to content
Snippets Groups Projects
Commit c9ea98e7 authored by inso's avatar inso
Browse files

Fixing a bug in password_asker

Fixed a bug where the qlineedit of the password_asker was already fill
even if the user didnt want to remember the password
parent 4534240b
No related branches found
Tags 0.7.2
No related merge requests found
......@@ -28,6 +28,7 @@ class PasswordAskerDialog(QDialog, Ui_PasswordAskerDialog):
self.remember = False
def ask(self):
self.edit_password.setText("")
if not self.remember:
self.exec_()
pwd = self.password
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment