[epiphany/wip/exalm/elementary: 1/3] notebook: Remove hbox around tabs menu button
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [epiphany/wip/exalm/elementary: 1/3] notebook: Remove hbox around tabs menu button
- Date: Sun, 22 Sep 2019 16:18:59 +0000 (UTC)
commit 873e282d586422142d173283afb7a174e8908d89
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date: Sun Sep 22 21:17:32 2019 +0500
notebook: Remove hbox around tabs menu button
Since there's no new tab button anymore, it's redundant.
src/ephy-notebook.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
---
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index b3ce9e837..85a68e766 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -557,21 +557,16 @@ static void
ephy_notebook_constructed (GObject *object)
{
EphyNotebook *notebook = EPHY_NOTEBOOK (object);
- GtkWidget *hbox;
GtkWidget *button;
EphyPagesPopover *popover;
G_OBJECT_CLASS (ephy_notebook_parent_class)->constructed (object);
- hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
- gtk_notebook_set_action_widget (GTK_NOTEBOOK (notebook), hbox, GTK_PACK_END);
- gtk_widget_show (hbox);
-
button = gtk_menu_button_new ();
gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
/* Translators: tooltip for the tab switcher menu button */
gtk_widget_set_tooltip_text (button, _("View open tabs"));
- gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, FALSE, 0);
+ gtk_notebook_set_action_widget (GTK_NOTEBOOK (notebook), button, GTK_PACK_END);
gtk_widget_show (button);
notebook->tab_menu = g_menu_new ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]