[gtk/matthiasc/for-master] Fix the definition of GtkWidget:can-target



commit 66890ea5b742570c96011aa0045b4ab3b75668d0
Author: Matthias Clasen <mclasen redhat com>
Date:   Sun Nov 1 11:27:22 2020 -0500

    Fix the definition of GtkWidget:can-target
    
    We are setting the value to TRUE initially, but
    the property had a declared default of FALSE.
    This is messing up the simplification of .ui files
    with gtk4-builder-tool, since it thinks it can
    omit can-target properties when it really can't.

 gtk/gtkwidget.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c
index f9bc34a969..31c0063022 100644
--- a/gtk/gtkwidget.c
+++ b/gtk/gtkwidget.c
@@ -1013,7 +1013,7 @@ gtk_widget_class_init (GtkWidgetClass *klass)
       g_param_spec_boolean ("can-target",
                             P_("Can target"),
                             P_("Whether the widget can receive pointer events"),
-                            FALSE,
+                            TRUE,
                             GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
 
   /**


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