Make 'Close' button close AboutDialog (#1018)

This commit is contained in:
Sergey 2021-03-10 03:05:43 +03:00 committed by GitHub
parent f4eba18ff6
commit e70b7c1222
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -241,6 +241,12 @@ public class Dino.Ui.Application : Gtk.Application, Dino.Application {
dialog.copyright = "Copyright © 2016-2021 - Dino Team";
dialog.license_type = License.GPL_3_0;
dialog.response.connect((response_id) => {
if (response_id == Gtk.ResponseType.CANCEL || response_id == Gtk.ResponseType.DELETE_EVENT) {
dialog.destroy();
}
});
if (!use_csd()) {
dialog.set_titlebar(null);
}