feedback-actor: Make the other properties static strings

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2619>
This commit is contained in:
Jonas Ådahl 2022-05-30 23:11:37 +02:00 committed by Marge Bot
parent a9740074ca
commit d517f3ae61

View File

@ -135,7 +135,8 @@ meta_feedback_actor_class_init (MetaFeedbackActorClass *klass)
"Anchor X",
"The X axis of the anchor point",
0, G_MAXFLOAT, 0,
G_PARAM_READWRITE);
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS);
g_object_class_install_property (object_class,
PROP_ANCHOR_X,
@ -145,7 +146,8 @@ meta_feedback_actor_class_init (MetaFeedbackActorClass *klass)
"Anchor Y",
"The Y axis of the anchor point",
0, G_MAXFLOAT, 0,
G_PARAM_READWRITE);
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS);
g_object_class_install_property (object_class,
PROP_ANCHOR_Y,