aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2023-08-07 09:15:49 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2023-08-07 09:15:49 +0200
commit92010355e93cbf844c7828297615ca57a1f84e31 (patch)
tree790990931a0ed3ae71215d8e1bdb5d8eb75aa371
parent2b32292bd7de887689a63950bfc372d3b7fffef5 (diff)
parent864b830e2e7b85d8763142326f84bc7b38acde97 (diff)
downloadlibayatana-appindicator-92010355e93cbf844c7828297615ca57a1f84e31.tar.gz
libayatana-appindicator-92010355e93cbf844c7828297615ca57a1f84e31.tar.bz2
libayatana-appindicator-92010355e93cbf844c7828297615ca57a1f84e31.zip
Merge branch 'WPettersson-document-status'
Attributes GH PR #66: https://github.com/AyatanaIndicators/libayatana-appindicator/pull/66
-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));