summaryrefslogtreecommitdiff
path: root/firefox-2.0-pango-ligatures.patch
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2007-11-27 01:43:10 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2007-11-27 01:43:10 +0000
commit4eb59d17eb95a21db15ad4bc13bb32de9b0dd1d6 (patch)
treeac631211f84a1b4abce62bf7b24027208a1de82c /firefox-2.0-pango-ligatures.patch
parentupdated to the latest upstream, sync. with f8 (diff)
downloadlibrewolf-fedora-ff-4eb59d17eb95a21db15ad4bc13bb32de9b0dd1d6.tar.gz
librewolf-fedora-ff-4eb59d17eb95a21db15ad4bc13bb32de9b0dd1d6.tar.bz2
librewolf-fedora-ff-4eb59d17eb95a21db15ad4bc13bb32de9b0dd1d6.zip
- Update to 2.0.0.10
Diffstat (limited to 'firefox-2.0-pango-ligatures.patch')
-rw-r--r--firefox-2.0-pango-ligatures.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/firefox-2.0-pango-ligatures.patch b/firefox-2.0-pango-ligatures.patch
index c259488..cfd1da7 100644
--- a/firefox-2.0-pango-ligatures.patch
+++ b/firefox-2.0-pango-ligatures.patch
@@ -134,7 +134,7 @@
// Make sure to clamp the pixel size to something reasonable so we
// don't make the X server blow up.
nscoord screenPixels = gdk_screen_height();
- mPointSize = PR_MIN(screenPixels * FONT_MAX_FONT_SCALE, mPointSize);
+ mPointSize = PR_MIN((screenPixels - 1) * FONT_MAX_FONT_SCALE, mPointSize);
+#endif
// enumerate over the font names passed in
bgstack15