diff options
author | Xan Lopez <xan@igalia.com> | 2012-01-17 06:54:59 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-01-17 06:54:59 +0800 |
commit | 390196098579f2b5ad70d43b738e04184d9cbac1 (patch) | |
tree | 3a034cf32d46159952d153f11a28a58aaf4644c7 | |
parent | 159f011f63d01135e8ad8b2e34afbf8fd677b45d (diff) | |
download | gsoc2013-epiphany-390196098579f2b5ad70d43b738e04184d9cbac1.tar gsoc2013-epiphany-390196098579f2b5ad70d43b738e04184d9cbac1.tar.gz gsoc2013-epiphany-390196098579f2b5ad70d43b738e04184d9cbac1.tar.bz2 gsoc2013-epiphany-390196098579f2b5ad70d43b738e04184d9cbac1.tar.lz gsoc2013-epiphany-390196098579f2b5ad70d43b738e04184d9cbac1.tar.xz gsoc2013-epiphany-390196098579f2b5ad70d43b738e04184d9cbac1.tar.zst gsoc2013-epiphany-390196098579f2b5ad70d43b738e04184d9cbac1.zip |
ephy-toolbar: set a name for the page menu button
To aid styling.
-rw-r--r-- | src/ephy-toolbar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c index 1ee6af8a8..a6f169c95 100644 --- a/src/ephy-toolbar.c +++ b/src/ephy-toolbar.c @@ -159,6 +159,7 @@ ephy_toolbar_constructed (GObject *object) /* Page Menu */ tool_item = gtk_tool_item_new (); tool_button = gtk_button_new (); + gtk_widget_set_name (GTK_WIDGET (tool_button), "ephy-page-menu-button"); /* FIXME: apparently we need an image inside the button for the action * icon to appear. */ gtk_button_set_image (GTK_BUTTON (tool_button), gtk_image_new ()); |