about summary refs log tree commit diff stats
path: root/xombrero.c
diff options
context:
space:
mode:
Diffstat (limited to 'xombrero.c')
-rw-r--r--xombrero.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/xombrero.c b/xombrero.c
index 324dd82..3d3d19e 100644
--- a/xombrero.c
+++ b/xombrero.c
@@ -4330,13 +4330,10 @@ webview_load_finished_cb(WebKitWebView *wv, WebKitWebFrame *wf, struct tab *t)
 void
 webview_progress_changed_cb(WebKitWebView *wv, int progress, struct tab *t)
 {
-	if (show_url == 0) {
-		gtk_entry_set_progress_fraction(GTK_ENTRY(t->sbe.statusbar),
-		    progress == 100 ? 0 : (double)progress / 100);
-	} else {
-		gtk_entry_set_progress_fraction(GTK_ENTRY(t->uri_entry),
-		    progress == 100 ? 0 : (double)progress / 100);
-	}
+	gtk_entry_set_progress_fraction(GTK_ENTRY(t->sbe.statusbar),
+	    progress == 100 ? 0 : (double)progress / 100);
+	gtk_entry_set_progress_fraction(GTK_ENTRY(t->uri_entry),
+	    progress == 100 ? 0 : (double)progress / 100);
 
 	update_statusbar_position(NULL, NULL);
 }