[libadwaita] view-stack: Add missing EXPLICIT_NOTIFY to page properties



commit 9ace5b0ccb8ff49af6f092689722cbfec58572c7
Author: Gleb Smirnov <glebsmirnov0708 gmail com>
Date:   Mon Jul 19 21:40:14 2021 +0300

    view-stack: Add missing EXPLICIT_NOTIFY to page properties

 src/adw-view-stack.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/adw-view-stack.c b/src/adw-view-stack.c
index 2a659ee9..2cf82ef6 100644
--- a/src/adw-view-stack.c
+++ b/src/adw-view-stack.c
@@ -296,7 +296,7 @@ adw_view_stack_page_class_init (AdwViewStackPageClass *class)
                          "Name",
                          "The name of the child page",
                          NULL,
-                         G_PARAM_READWRITE);
+                         G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
 
   /**
    * AdwViewStackPage:title: (attributes org.gtk.Property.get=adw_view_stack_page_get_title 
org.gtk.Property.set=adw_view_stack_page_set_title)
@@ -310,7 +310,7 @@ adw_view_stack_page_class_init (AdwViewStackPageClass *class)
                          "Title",
                          "The title of the child page",
                          NULL,
-                         G_PARAM_READWRITE);
+                         G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
 
   /**
    * AdwViewStackPage:icon-name: (attributes org.gtk.Property.get=adw_view_stack_page_get_icon_name 
org.gtk.Property.set=adw_view_stack_page_set_icon_name)
@@ -324,7 +324,7 @@ adw_view_stack_page_class_init (AdwViewStackPageClass *class)
                          "Icon name",
                          "The icon name of the child page",
                          NULL,
-                         G_PARAM_READWRITE);
+                         G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY);
 
   /**
    * AdwViewStackPage:needs-attention: (attributes 
org.gtk.Property.get=adw_view_stack_page_get_needs_attention 
org.gtk.Property.set=adw_view_stack_page_set_needs_attention)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]