diff options
author | Chris Toshok <toshok@ximian.com> | 2003-01-18 07:22:23 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-01-18 07:22:23 +0800 |
commit | 673b33651451e83c367dcb78c6f6c01877f8e6d3 (patch) | |
tree | 5b0601752ae5755440c13e7210008312e58c1a7e /shell/e-shell-settings-dialog.c | |
parent | e867ad711ed48dcaa1f052dd30c3f1a4436d42bf (diff) | |
download | gsoc2013-evolution-673b33651451e83c367dcb78c6f6c01877f8e6d3.tar.gz gsoc2013-evolution-673b33651451e83c367dcb78c6f6c01877f8e6d3.tar.zst gsoc2013-evolution-673b33651451e83c367dcb78c6f6c01877f8e6d3.zip |
pass pango_context_get_language (context) to pango_context_get_metrics.
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.
svn path=/trunk/; revision=19506
Diffstat (limited to 'shell/e-shell-settings-dialog.c')
-rw-r--r-- | shell/e-shell-settings-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |