summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2020-11-29 09:25:46 +0100
committerMatthias Clasen <mclasen@redhat.com>2020-11-30 09:22:49 -0500
commitff8de0a93f003f9c3bf6c32777a2055f39094ecf (patch)
tree7b2049f755b7d9692cc8bad9d1946cc225cc0ab4
parentaefabcc0560a2116a51edcb6fbc14ad83036a31c (diff)
downloadgtk+-ff8de0a93f003f9c3bf6c32777a2055f39094ecf.tar.gz
eventcontrollermotion: Notify by pspec
-rw-r--r--gtk/gtkeventcontrollermotion.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkeventcontrollermotion.c b/gtk/gtkeventcontrollermotion.c
index 8a9a623765..86c38c1048 100644
--- a/gtk/gtkeventcontrollermotion.c
+++ b/gtk/gtkeventcontrollermotion.c
@@ -133,12 +133,12 @@ update_pointer_focus (GtkEventController *controller,
if (motion->is_pointer != is_pointer)
{
motion->is_pointer = is_pointer;
- g_object_notify (G_OBJECT (motion), "is-pointer");
+ g_object_notify_by_pspec (G_OBJECT (motion), props[PROP_IS_POINTER]);
}
if (motion->contains_pointer != contains_pointer)
{
motion->contains_pointer = contains_pointer;
- g_object_notify (G_OBJECT (motion), "contains-pointer");
+ g_object_notify_by_pspec (G_OBJECT (motion), props[PROP_CONTAINS_POINTER]);
}
g_object_thaw_notify (G_OBJECT (motion));