We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49fc4a1 commit a7e57a2Copy full SHA for a7e57a2
1 file changed
src/main.py
@@ -52,9 +52,8 @@ def do_activate(self):
52
53
def on_about_action(self, widget, _):
54
"""Callback for the app.about action."""
55
- about = Adw.AboutWindow.new_from_appdata(f'{self.get_resource_base_path()}/metainfo', self.version)
56
- about.set_transient_for(self.props.active_window)
57
- about.present()
+ about = Adw.AboutDialog.new_from_appdata(f'{self.get_resource_base_path()}/metainfo', self.version)
+ about.present(self.props.active_window)
58
59
def on_preferences_action(self, widget, _):
60
"""Callback for the app.preferences action."""
0 commit comments