diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-settings-dialog.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index fb8c4a757c..f8f2db01c9 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2003-01-17 Chris Toshok <toshok@ximian.com> + + * e-shell-settings-dialog.c (set_dialog_size): pass + pango_context_get_language (context) to + pango_context_get_metrics. + 2003-01-14 Ettore Perazzoli <ettore@ximian.com> * e-shell-folder-selection-dialog.c diff --git a/shell/e-shell-settings-dialog.c b/shell/e-shell-settings-dialog.c index 84cb3ce164..eeadd88885 100644 --- a/shell/e-shell-settings-dialog.c +++ b/shell/e-shell-settings-dialog.c @@ -66,7 +66,7 @@ set_dialog_size (EShellSettingsDialog *dialog) context = pango_layout_get_context (layout); metrics = pango_context_get_metrics (context, gtk_widget_get_style (GTK_WIDGET (dialog))->font_desc, - NULL); + pango_context_get_language (context)); pango_layout_get_pixel_size (layout, &width, NULL); |