diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-11 17:24:12 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-11 17:24:12 (EDT) |
commit | f28113385d46523c4cc9ee6a1fec643e04fe048d (patch) | |
tree | 8ca46c37115d15ba55b3a5f788d8dccda445cad3 /src | |
parent | 5b5696b9b4c4e29beb3e826017bd71c08d39baba (diff) | |
download | marquee-f28113385d46523c4cc9ee6a1fec643e04fe048d.zip marquee-f28113385d46523c4cc9ee6a1fec643e04fe048d.tar.gz marquee-f28113385d46523c4cc9ee6a1fec643e04fe048d.tar.bz2 |
MqWebView: Make tab property writable
Diffstat (limited to 'src')
-rw-r--r-- | src/web-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web-view.c b/src/web-view.c index 0feaeb9..9604b17 100644 --- a/src/web-view.c +++ b/src/web-view.c @@ -571,7 +571,7 @@ mq_web_view_class_init(MqWebViewClass *klass) obj_properties[PROP_TAB] = g_param_spec_pointer( "tab", "MqTab", "Parent MqTab instance", - G_PARAM_CONSTRUCT_ONLY | + G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB); obj_properties[PROP_URI] = g_param_spec_string( "uri", "URI", "URI to load", |