aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/app-indicator.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c
index ebedc65..87e66ed 100644
--- a/src/app-indicator.c
+++ b/src/app-indicator.c
@@ -326,14 +326,16 @@ app_indicator_class_init (AppIndicatorClass *klass)
/**
* AppIndicator:status:
*
- * Whether the indicator is shown or requests attention. Defaults to
- * 'Passive'.
+ * Whether the indicator is shown or requests attention. Can be one of
+ * 'Passive' (the indicator should not be shown), 'Active' (the indicator
+ * should be shown in its default state), and 'Attention' (the indicator
+ * should now show it's attention icon). Defaults to 'Passive'.
*/
g_object_class_install_property (object_class,
PROP_STATUS,
g_param_spec_string (PROP_STATUS_S,
"Indicator Status",
- "Whether the indicator is shown or requests attention. Defaults to 'Passive'.",
+ "Whether the indicator is shown or requests attention. Can be one of 'Passive' (the indicator should not be shown), 'Active' (the indicator should be shown in its default state), and 'Attention' (the indicator should now show it's attention icon). Defaults to 'Passive'.",
NULL,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));