Disabel error bell
This commit is contained in:
parent
8a8a2c10a6
commit
70f6a47fd5
|
@ -45,5 +45,8 @@ class GoldwardenLoginApp(Adw.Application):
|
|||
goldwarden.login_with_password(email, "")
|
||||
|
||||
if __name__ == "__main__":
|
||||
settings = Gtk.Settings.get_default()
|
||||
settings.set_property("gtk-error-bell", False)
|
||||
|
||||
app = GoldwardenLoginApp(application_id="com.quexten.Goldwarden.login")
|
||||
app.run(sys.argv)
|
|
@ -108,6 +108,9 @@ class GoldwardenQuickAccessApp(Adw.Application):
|
|||
self.update()
|
||||
|
||||
if __name__ == "__main__":
|
||||
settings = Gtk.Settings.get_default()
|
||||
settings.set_property("gtk-error-bell", False)
|
||||
|
||||
token = sys.stdin.readline()
|
||||
goldwarden.create_authenticated_connection(token)
|
||||
app = GoldwardenQuickAccessApp(application_id="com.quexten.Goldwarden.quickaccess")
|
||||
|
|
|
@ -139,7 +139,9 @@ class GoldwardenSettingsApp(Adw.Application):
|
|||
dialog.set_visible(True)
|
||||
|
||||
if __name__ == "__main__":
|
||||
# read from stdin
|
||||
settings = Gtk.Settings.get_default()
|
||||
settings.set_property("gtk-error-bell", False)
|
||||
|
||||
token = sys.stdin.readline().strip()
|
||||
|
||||
goldwarden.create_authenticated_connection(None)
|
||||
|
|
Loading…
Reference in New Issue