From 8a85f0bc9ad6c10d49a9b486ef7e6d6f159a7e3a Mon Sep 17 00:00:00 2001
From: Daniel Carl <danielcarl@gmx.de>
Date: Sun, 3 Nov 2013 20:09:10 +0100
Subject: [PATCH] Changed the history indicator chars.

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.c b/src/main.c
index aa5c453..f3d170a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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 {
-- 
2.20.1