[gnome-games/wip/exalm/gtk4: 18/26] application: Stop using gtk_widget_hide_on_delete()
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-games/wip/exalm/gtk4: 18/26] application: Stop using gtk_widget_hide_on_delete()
- Date: Sat, 9 Feb 2019 12:35:55 +0000 (UTC)
commit 26addfc496e189bed50a89eb0f044853e16e505b
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date: Sun Jul 29 13:36:35 2018 +0500
application: Stop using gtk_widget_hide_on_delete()
Use GtkWindow's hide_on_close property instead.
src/ui/application.vala | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
---
diff --git a/src/ui/application.vala b/src/ui/application.vala
index 763bf1a8..5ac85422 100644
--- a/src/ui/application.vala
+++ b/src/ui/application.vala
@@ -385,10 +385,7 @@ public class Games.Application : Gtk.Application {
dialog.documenters = Credits.DOCUMENTERS;
dialog.translator_credits = _("translator-credits");
- dialog.response.connect ((response_id) => {
- if (response_id == Gtk.ResponseType.CANCEL || response_id ==
Gtk.ResponseType.DELETE_EVENT)
- dialog.hide_on_delete ();
- });
+ dialog.hide_on_close = true;
dialog.present ();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]