diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-07-25 05:32:48 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-07-25 05:32:48 +0800 |
commit | dadad030dc244a53b6e275cb5b022ed676eaf51c (patch) | |
tree | 6c0f7888eb7d89ea248d1637ae2cc66a4af4b22e /src/bookmarks/ephy-topic-action.c | |
parent | 55d7c7356ea035cb11163b4994e8fec77a77a844 (diff) | |
download | gsoc2013-epiphany-dadad030dc244a53b6e275cb5b022ed676eaf51c.tar gsoc2013-epiphany-dadad030dc244a53b6e275cb5b022ed676eaf51c.tar.gz gsoc2013-epiphany-dadad030dc244a53b6e275cb5b022ed676eaf51c.tar.bz2 gsoc2013-epiphany-dadad030dc244a53b6e275cb5b022ed676eaf51c.tar.lz gsoc2013-epiphany-dadad030dc244a53b6e275cb5b022ed676eaf51c.tar.xz gsoc2013-epiphany-dadad030dc244a53b6e275cb5b022ed676eaf51c.tar.zst gsoc2013-epiphany-dadad030dc244a53b6e275cb5b022ed676eaf51c.zip |
Also ellipsise the menu entries in the toolbar overflow menu.
2005-07-24 Christian Persch <chpe@cvs.gnome.org>
* src/bookmarks/ephy-bookmark-action.c: (connect_proxy):
* src/bookmarks/ephy-topic-action.c: (append_bookmarks_menu),
(connect_proxy):
Also ellipsise the menu entries in the toolbar overflow menu.
Diffstat (limited to 'src/bookmarks/ephy-topic-action.c')
-rw-r--r-- | src/bookmarks/ephy-topic-action.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-topic-action.c b/src/bookmarks/ephy-topic-action.c index d170c634c..55f8953aa 100644 --- a/src/bookmarks/ephy-topic-action.c +++ b/src/bookmarks/ephy-topic-action.c @@ -50,6 +50,7 @@ #define TOOLITEM_WIDTH_CHARS 24 #define MENUITEM_WIDTH_CHARS 32 +#define LABEL_WIDTH_CHARS 32 #define EPHY_TOPIC_ACTION_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_TOPIC_ACTION, EphyTopicActionPrivate)) @@ -295,8 +296,9 @@ append_bookmarks_menu (EphyTopicAction *action, GtkWidget *menu, EphyNode *node, item = gtk_image_menu_item_new_with_label (title); label = (GtkLabel *) ((GtkBin *) item)->child; - gtk_label_set_max_width_chars (label, MENUITEM_WIDTH_CHARS); + gtk_label_set_max_width_chars (label, LABEL_WIDTH_CHARS); gtk_label_set_ellipsize (label, PANGO_ELLIPSIZE_END); + gtk_label_set_use_underline (label, FALSE); if (icon_location) { @@ -909,6 +911,16 @@ connect_proxy (GtkAction *action, GtkWidget *proxy) g_signal_connect (button, "drag_data_delete", G_CALLBACK (drag_data_delete_cb), action); } + else if (GTK_IS_MENU_ITEM (proxy)) + { + GtkLabel *label; + + label = (GtkLabel *) ((GtkBin *) proxy)->child; + + gtk_label_set_use_underline (label, FALSE); + gtk_label_set_ellipsize (label, PANGO_ELLIPSIZE_END); + gtk_label_set_max_width_chars (label, LABEL_WIDTH_CHARS); + } } static void |