diff --git a/src/manjaro-hello.py b/src/manjaro-hello.py index d18291c..a186f2e 100644 --- a/src/manjaro-hello.py +++ b/src/manjaro-hello.py @@ -192,12 +192,6 @@ class ManjaroHello(): self.set_locale(self.preferences["locale"]) self.save_preferences() - def on_about_clicked(self, btn): - dialog = self.builder.get_object("aboutdialog") - dialog.set_transient_for(self.window) - dialog.run() - dialog.hide() - def on_action_btn_clicked(self, btn): name = btn.get_name() if name in ("welcome", "readme", "release", "involved"): @@ -206,6 +200,11 @@ class ManjaroHello(): subprocess.call(["sudo", "-E", "calamares"]) elif name == "installcli": subprocess.call(["sudo cli-installer"]) + elif name == "about": + dialog = self.builder.get_object("aboutdialog") + dialog.set_transient_for(self.window) + dialog.run() + dialog.hide() def on_link_clicked(self, link, _=None): webbrowser.open_new_tab(self.urls[link.get_name()]) diff --git a/ui/manjaro-hello.glade b/ui/manjaro-hello.glade index 2716f13..db22cd3 100644 --- a/ui/manjaro-hello.glade +++ b/ui/manjaro-hello.glade @@ -596,11 +596,12 @@ We, the Manjaro Developers, hope that you will enjoy using Manjaro as much as we + about True True True iconabout - + end