diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-12 02:09:08 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-12 02:09:08 (EDT) |
commit | 9de2cf3afa36bb81e649ae63f27d019b96f9d763 (patch) | |
tree | e213050ca233338223a68d8abf4f3f128d15fc21 | |
parent | 073c912b1b35d211903d67ab77d06f174960e430 (diff) | |
download | marquee-9de2cf3afa36bb81e649ae63f27d019b96f9d763.zip marquee-9de2cf3afa36bb81e649ae63f27d019b96f9d763.tar.gz marquee-9de2cf3afa36bb81e649ae63f27d019b96f9d763.tar.bz2 |
MqWebView: Improve property descriptions
-rw-r--r-- | src/web-view.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/web-view.c b/src/web-view.c index 2e8bc40..7516202 100644 --- a/src/web-view.c +++ b/src/web-view.c @@ -650,11 +650,16 @@ mq_web_view_class_init(MqWebViewClass *klass) object_class->set_property = set_property; obj_properties[PROP_TAB] = g_param_spec_pointer( - "tab", "MqTab", "Parent MqTab instance", + "tab", + "MqTab", + "The parent MqTab instance", G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB); obj_properties[PROP_REWRITTEN_URI] = g_param_spec_string( - "rewritten-uri", "URI", "URI to load", + "rewritten-uri", + "URI", + "The current active URI of the Web view, " + "with \"mq-about:\" rewritten to \"about:\"", "", G_PARAM_READWRITE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB); |