Changed the history indicator chars.
authorDaniel Carl <danielcarl@gmx.de>
Sun, 3 Nov 2013 19:09:10 +0000 (20:09 +0100)
committerDaniel Carl <danielcarl@gmx.de>
Sun, 3 Nov 2013 19:09:10 +0000 (20:09 +0100)
The chars for the history indicator from those of vimprobable to those that
pentadactyl uses '-' = can go back and '+' can go forward.

src/main.c

index aa5c453..f3d170a 100644 (file)
@@ -325,7 +325,7 @@ void vb_update_urlbar(const char *uri)
 
     /* show history indicator only if there is something to show */
     if (back || fwd) {
-        str = g_strdup_printf("%s [%s]", uri, back ? (fwd ? "+-" : "+") : "-");
+        str = g_strdup_printf("%s [%s]", uri, back ? (fwd ? "-+" : "-") : "+");
         gtk_label_set_text(GTK_LABEL(gui->statusbar.left), str);
         g_free(str);
     } else {