diff options
author | Xan Lopez <xan@igalia.com> | 2011-12-05 05:28:50 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2011-12-05 05:31:25 +0800 |
commit | ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc (patch) | |
tree | 014667c6bba38b679e9874ddc356286f449dcd88 /src/ephy-toolbar.c | |
parent | d5216f2d4cebd894c79d124d583304fd044fa96a (diff) | |
download | gsoc2013-epiphany-ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc.tar gsoc2013-epiphany-ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc.tar.gz gsoc2013-epiphany-ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc.tar.bz2 gsoc2013-epiphany-ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc.tar.lz gsoc2013-epiphany-ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc.tar.xz gsoc2013-epiphany-ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc.tar.zst gsoc2013-epiphany-ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc.zip |
Remove history dropdown menus from action buttons
They are not commonly used and are not present in the new design, so
we can get rid of them.
Diffstat (limited to 'src/ephy-toolbar.c')
-rw-r--r-- | src/ephy-toolbar.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c index ed67a70f9..7fed22bdd 100644 --- a/src/ephy-toolbar.c +++ b/src/ephy-toolbar.c @@ -217,10 +217,6 @@ ephy_toolbar_set_window (EphyToolbar *toolbar, "label", _("_Back"), "stock_id", GTK_STOCK_GO_BACK, "tooltip", _("Go to the previous visited page"), - /* this is the tooltip on the Back button's drop-down arrow, which will show - * a menu with all sites you can go 'back' to - */ - "arrow-tooltip", _("Back history"), "window", priv->window, "direction", EPHY_NAVIGATION_HISTORY_DIRECTION_BACK, "is_important", TRUE, @@ -237,10 +233,6 @@ ephy_toolbar_set_window (EphyToolbar *toolbar, "label", _("_Forward"), "stock_id", GTK_STOCK_GO_FORWARD, "tooltip", _("Go to the next visited page"), - /* this is the tooltip on the Forward button's drop-down arrow, which will show - * a menu with all sites you can go 'forward' to - */ - "arrow-tooltip", _("Forward history"), "window", priv->window, "direction", EPHY_NAVIGATION_HISTORY_DIRECTION_FORWARD, NULL); @@ -256,10 +248,6 @@ ephy_toolbar_set_window (EphyToolbar *toolbar, "label", _("_Up"), "stock_id", GTK_STOCK_GO_UP, "tooltip", _("Go up one level"), - /* this is the tooltip on the Up button's drop-down arrow, which will show - * a menu with al sites you can go 'up' to - */ - "arrow-tooltip", _("List of upper levels"), "window", priv->window, NULL); g_signal_connect_swapped (action, "open-link", |