diff options
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 43bf353f3..76509dd95 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -1055,6 +1055,8 @@ update_nav_control (EphyWindow *window) g_object_set (action, "sensitive", !forward, NULL); action = egg_action_group_get_action (action_group, "GoUp"); g_object_set (action, "sensitive", !up, NULL); + action = egg_action_group_get_action (action_group, "ViewStop"); + g_object_set (action, "sensitive", stop, NULL); toolbar_update_navigation_actions (window->priv->toolbar, back, forward, up); |