aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ephy-window.c7
-rwxr-xr-xsrc/toolbar.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index ae6bb9e77..41944f37b 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -687,6 +687,13 @@ setup_window (EphyWindow *window)
action = egg_action_group_get_action (action_group, "GoBookmarks");
g_object_set (action, "short_label", _("Bookmarks"), NULL);
+ action = egg_action_group_get_action (action_group, "EditFind");
+ g_object_set (action, "important", TRUE, NULL);
+ action = egg_action_group_get_action (action_group, "GoHome");
+ g_object_set (action, "important", TRUE, NULL);
+ action = egg_action_group_get_action (action_group, "GoBookmarks");
+ g_object_set (action, "important", TRUE, NULL);
+
action_group = egg_action_group_new ("PopupsActions");
egg_action_group_add_actions (action_group, ephy_popups_entries,
ephy_popups_n_entries);
diff --git a/src/toolbar.c b/src/toolbar.c
index b57284727..9cfab5693 100755
--- a/src/toolbar.c
+++ b/src/toolbar.c
@@ -270,6 +270,7 @@ toolbar_setup_actions (Toolbar *t)
"tooltip", _("Go back"),
"window", t->priv->window,
"direction", EPHY_NAVIGATION_DIRECTION_BACK,
+ "important", TRUE,
NULL);
g_signal_connect (action, "activate",
G_CALLBACK (window_cmd_go_back), t->priv->window);