qulogic/pidgin

323123b137f4
Parents c7da646df6e6
Children d6b14c011e68
Fix the default fallback icon name for PidginPresenceIcon

Way back when, this just used the default icon name of `user-invisible` but we
moved to `pidgin-user-*` for everything awhile ago and missed this one.

Testing Done:
Consulted with the turtles.

Reviewed at https://reviews.imfreedom.org/r/2865/
--- a/pidgin/pidginpresenceicon.c Mon Dec 04 00:43:05 2023 -0600
+++ b/pidgin/pidginpresenceicon.c Mon Dec 04 01:05:11 2023 -0600
@@ -154,7 +154,7 @@
properties[PROP_FALLBACK] = g_param_spec_string(
"fallback", "fallback",
"The name of the icon to use as a fallback",
- "user-invisible",
+ "pidgin-user-invisible",
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS);
/**