diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-notebook.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2005-03-14 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-notebook.c: (build_tab_label): + + Set the tab label to single-line mode. Fixes bug #167657. + +2005-03-14 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-window.c: (setup_multimedia_key_actions): Fix the build. diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 807e374ba..02bf907f6 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -908,6 +908,7 @@ build_tab_label (EphyNotebook *nb, EphyTab *tab) /* setup label */ label = gtk_label_new (""); gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END); + gtk_label_set_single_line_mode (GTK_LABEL (label), TRUE); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_misc_set_padding (GTK_MISC (label), 0, 0); gtk_box_pack_start (GTK_BOX (label_hbox), label, TRUE, TRUE, 0); |