aboutsummaryrefslogtreecommitdiffstats
path: root/src/toolbar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/toolbar.c')
-rwxr-xr-xsrc/toolbar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/toolbar.c b/src/toolbar.c
index 1601953cd..a1ca442cb 100755
--- a/src/toolbar.c
+++ b/src/toolbar.c
@@ -686,11 +686,11 @@ toolbar_update_navigation_actions (Toolbar *t, gboolean back, gboolean forward,
action_group = t->priv->action_group;
action = egg_action_group_get_action (action_group, "NavigationBack");
- g_object_set (action, "sensitive", !back, NULL);
+ g_object_set (action, "sensitive", back, NULL);
action = egg_action_group_get_action (action_group, "NavigationForward");
- g_object_set (action, "sensitive", !forward, NULL);
+ g_object_set (action, "sensitive", forward, NULL);
action = egg_action_group_get_action (action_group, "NavigationUp");
- g_object_set (action, "sensitive", !up, NULL);
+ g_object_set (action, "sensitive", up, NULL);
}
void