From 73c15101957f314086cb32afb5af312f1a18ee42 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Wed, 23 Apr 2014 12:03:03 +0200 Subject: [PATCH] fixed status bar content not removed when switching to another article --- src/webbrowser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webbrowser.c b/src/webbrowser.c index 4f77fed..bb69e34 100644 --- a/src/webbrowser.c +++ b/src/webbrowser.c @@ -49,7 +49,7 @@ static void hovering_over_link_cbk(WebKitWebView *web_view, if (uri) gtk_statusbar_push(w_status, id, uri); else - gtk_statusbar_pop(w_status, id); + gtk_statusbar_remove_all(w_status, id); } GtkWidget *web_get_widget() -- 2.7.4