diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-09-29 05:12:56 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-09-29 05:12:56 (EDT) |
commit | 6a8b4936b258497f7a6de772e6ccb9ea0194c0b1 (patch) | |
tree | 9b6b1c6eb252bb12cc30538d5e62d893437cc64b /src | |
parent | 7ec5b40fdde9e703133508f36db22f57fc447a70 (diff) | |
download | marquee-6a8b4936b258497f7a6de772e6ccb9ea0194c0b1.zip marquee-6a8b4936b258497f7a6de772e6ccb9ea0194c0b1.tar.gz marquee-6a8b4936b258497f7a6de772e6ccb9ea0194c0b1.tar.bz2 |
mq_about_request(): Activate marquee mode on "about:marquee"
Diffstat (limited to 'src')
-rw-r--r-- | src/about.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/about.c b/src/about.c index 97b1285..d130534 100644 --- a/src/about.c +++ b/src/about.c @@ -32,9 +32,9 @@ mq_about_request(WebKitURISchemeRequest *request, MqApplication *application) gsize stream_length; GInputStream *stream; - g_print("about:...\n"); path = webkit_uri_scheme_request_get_path(request); if (g_strcmp0(path, "marquee") == 0) { - g_print("about:marquee\n"); + /* TODO: Respond with an HTML document with a toggle button. */ + mq_application_marquee_mode_activate(application); } } |