diff options
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-view.c | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index e6d748b73a..ca05935dd6 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2000-09-12 Lauris Kaplinski <lauris@helixcode.com> + + * e-shell-view.c (update_folder_title_bar): Translate UTF-8 + 2000-09-12 Ettore Perazzoli <ettore@helixcode.com> * Makefile.am: Remove the `ui.xml' stuff. diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 0269db569b..319e85fd38 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -911,8 +911,12 @@ update_folder_title_bar (EShellView *shell_view, if (folder_icon) e_shell_folder_title_bar_set_icon (E_SHELL_FOLDER_TITLE_BAR (priv->view_title_bar), folder_icon); - if (folder_name) - e_shell_folder_title_bar_set_title (E_SHELL_FOLDER_TITLE_BAR (priv->view_title_bar), folder_name); + if (folder_name) { + gchar * utf; + utf = e_utf8_to_gtk_string (GTK_WIDGET (priv->view_title_bar), folder_name); + e_shell_folder_title_bar_set_title (E_SHELL_FOLDER_TITLE_BAR (priv->view_title_bar), utf); + g_free (utf); + } } static void |