diff options
author | Xan Lopez <xan@gnome.org> | 2009-09-07 06:53:22 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-09-07 06:53:22 +0800 |
commit | f3366f19eb5d7fe77d843742a9db39d1fb53e36b (patch) | |
tree | e403db87373dec8edf9dd11ec356fa1b7d574a64 | |
parent | 0af2bca8aae4ae02c8c850f83c31de2fd3651c60 (diff) | |
download | gsoc2013-epiphany-f3366f19eb5d7fe77d843742a9db39d1fb53e36b.tar.gz gsoc2013-epiphany-f3366f19eb5d7fe77d843742a9db39d1fb53e36b.tar.zst gsoc2013-epiphany-f3366f19eb5d7fe77d843742a9db39d1fb53e36b.zip |
ephy-embed-prefs.c: use 'minimum-logical-font-size' for minimum font size preference
Almost the same than 'minimum-font-size', but broadly speaking WebKit
won't enforce it when it considers it could break the layout of a
site. Should avoid breakage in some sites when we have a minimum font
setting too big.
-rw-r--r-- | embed/ephy-embed-prefs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed-prefs.c b/embed/ephy-embed-prefs.c index c1a14dfd2..9a04338a6 100644 --- a/embed/ephy-embed-prefs.c +++ b/embed/ephy-embed-prefs.c @@ -197,7 +197,7 @@ webkit_pref_callback_font_family (GConfClient *client, static const PrefData webkit_pref_entries[] = { { CONF_RENDERING_FONT_MIN_SIZE, - "minimum-font-size", + "minimum-logical-font-size", webkit_pref_callback_int }, { CONF_DESKTOP_FONT_VAR_NAME, "default-font-size", |