diff --git a/src/Dialogs/About.vala b/src/Dialogs/About.vala index 4e5a224..c95ba5f 100644 --- a/src/Dialogs/About.vala +++ b/src/Dialogs/About.vala @@ -22,6 +22,13 @@ public class Tootle.Dialogs.About : AboutDialog { artists = Build.get_artists (); translator_credits = Build.TRANSLATOR != " " ? Build.TRANSLATOR : null; + response.connect ((response_id) => { + if (response_id == Gtk.ResponseType.CANCEL || + response_id == Gtk.ResponseType.DELETE_EVENT) { + hide_on_delete (); + } + }); + present (); }