summaryrefslogtreecommitdiff
path: root/browser.c
diff options
context:
space:
mode:
Diffstat (limited to 'browser.c')
-rw-r--r--browser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/browser.c b/browser.c
index 2903f97..19c6984 100644
--- a/browser.c
+++ b/browser.c
@@ -322,7 +322,8 @@ changed_load_progress(GObject *obj, GParamSpec *pspec, gpointer data)
gdouble p;
p = webkit_web_view_get_estimated_load_progress(WEBKIT_WEB_VIEW(c->web_view));
- if (p == 1) p = 0;
+ if (p == 1)
+ p = 0;
gtk_entry_set_progress_fraction(GTK_ENTRY(c->location), p);
}