[gnome-games/wip/exalm/gtk4: 19/28] application: Stop using gtk_widget_hide_on_delete()



commit 280906a5103a6aaf797dca6de9a4d5001c5cdc3e
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 8315a4c2..7d7931cc 100644
--- a/src/ui/application.vala
+++ b/src/ui/application.vala
@@ -396,10 +396,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]