diff options
Diffstat (limited to 'shell/e-shell-folder-title-bar.c')
-rw-r--r-- | shell/e-shell-folder-title-bar.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c index 92b4a6577d..836da098cb 100644 --- a/shell/e-shell-folder-title-bar.c +++ b/shell/e-shell-folder-title-bar.c @@ -152,6 +152,14 @@ label_realize_callback (GtkWidget *widget, style->font = bolded_font; gtk_style_attach (style, widget->window); + + if (E_IS_CLIPPED_LABEL (widget)) { + char *text; + + text = g_strdup (e_clipped_label_get_text (E_CLIPPED_LABEL (widget))); + e_clipped_label_set_text (E_CLIPPED_LABEL (widget), text); + g_free (text); + } } static void |