Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
mozilla, antialiasing, and scrolling
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
zigg
n00b
n00b


Joined: 18 Jun 2002
Posts: 8

PostPosted: Thu Jul 18, 2002 11:54 pm    Post subject: mozilla, antialiasing, and scrolling Reply with quote

I have a largely default install of just about everything, and use Mozilla. I get antialiased fonts in the browser. When I scroll Mozilla with the wheel, these fonts often end up missing lines as they are scrolled, often making them unreadable.

Anyone got any suggestions to fix this?
Back to top
View user's profile Send private message
AutoBot
l33t
l33t


Joined: 22 Apr 2002
Posts: 968
Location: Usually Out

PostPosted: Fri Jul 19, 2002 2:30 am    Post subject: Reply with quote

Try putting this in your unix.js instead of what you have and then using Microsoft-verdana-iso8859-1 as your font, if the paths aren't currently in mozilla you will have to restart the browser after you edit your unix.js file.

Code:

// TrueType
pref("font.FreeType2.enable", true);
pref("font.freetype2.shared-library", "libfreetype.so.6");
pref("font.FreeType2.autohinted", false);
pref("font.FreeType2.unhinted", false);
pref("font.antialias.min",        10);
pref("font.embedded_bitmaps.max", 1000000);
pref("font.scale.tt_bitmap.dark_text.min", 32);
pref("font.scale.tt_bitmap.dark_text.gain", "0.4");
pref("font.directory.truetype.1", "/usr/share/fonts/truetype");
pref("font.directory.truetype.2", "/usr/X11R6/lib/X11/fonts/TTF");
pref("font.directory.truetype.3", "/usr/X11R6/lib/X11/fonts/truetype");

_________________
This message self destructed a long time ago.
Back to top
View user's profile Send private message
fghellar
Bodhisattva
Bodhisattva


Joined: 10 Apr 2002
Posts: 856
Location: Porto Alegre, BR

PostPosted: Fri Jul 19, 2002 2:52 am    Post subject: Reply with quote

I also see this, and I have

pref("font.FreeType2.enable", false);

in unix.js...
_________________
| www.gentoo.org | www.tldp.org | www.google.com |
Back to top
View user's profile Send private message
AutoBot
l33t
l33t


Joined: 22 Apr 2002
Posts: 968
Location: Usually Out

PostPosted: Fri Jul 19, 2002 2:59 am    Post subject: Reply with quote

I use 1.1a and I don't have this problem, perhaps it's a source issue.
_________________
This message self destructed a long time ago.
Back to top
View user's profile Send private message
Larde
Guru
Guru


Joined: 07 Jun 2002
Posts: 313
Location: Duesseldorf, Germany

PostPosted: Fri Jul 19, 2002 6:56 am    Post subject: Reply with quote

I had exactly the same problem. It really drove me crazy, because it only happened on one of two systems.
I solved it by setting "Edit->Preferences->Appearance->Fonts->Display resolution" from "System setting" to "96dpi".

Hth,

Larde.
Back to top
View user's profile Send private message
zigg
n00b
n00b


Joined: 18 Jun 2002
Posts: 8

PostPosted: Fri Jul 19, 2002 4:49 pm    Post subject: a-ha! Reply with quote

Larde wrote:
I solved it by setting "Edit->Preferences->Appearance->Fonts->Display resolution" from "System setting" to "96dpi".


Out of all the suggestions here, that one did it. The text isn't squirming in Mozilla's form controls either now. Very interesting. xdpyinfo claims my dpi is currently 92.

Incidentally, the unix.js mods posted above were almost all in the unix.js I already have. The only difference:

Code:
pref("font.scale.tt_bitmap.dark_text.min", 32);
pref("font.scale.tt_bitmap.dark_text.gain", "0.4");


was previously

Code:
pref("font.scale.tt_bitmap.dark_text.min", 64);
pref("font.scale.tt_bitmap.dark_text.gain", "0.8");


IIRC. Don't see how this would have helped anyway. Thanks all!
Back to top
View user's profile Send private message
AutoBot
l33t
l33t


Joined: 22 Apr 2002
Posts: 968
Location: Usually Out

PostPosted: Fri Jul 19, 2002 5:02 pm    Post subject: Re: a-ha! Reply with quote

zigg wrote:
Larde wrote:
I solved it by setting "Edit->Preferences->Appearance->Fonts->Display resolution" from "System setting" to "96dpi".


Out of all the suggestions here, that one did it. The text isn't squirming in Mozilla's form controls either now. Very interesting. xdpyinfo claims my dpi is currently 92.

Incidentally, the unix.js mods posted above were almost all in the unix.js I already have. The only difference:

Code:
pref("font.scale.tt_bitmap.dark_text.min", 32);
pref("font.scale.tt_bitmap.dark_text.gain", "0.4");


was previously

Code:
pref("font.scale.tt_bitmap.dark_text.min", 64);
pref("font.scale.tt_bitmap.dark_text.gain", "0.8");


IIRC. Don't see how this would have helped anyway. Thanks all!


Actually I was referring more toward the pref("font.FreeType2.enable", true); line, but at least your issue has been resolved.
_________________
This message self destructed a long time ago.
Back to top
View user's profile Send private message
Larde
Guru
Guru


Joined: 07 Jun 2002
Posts: 313
Location: Duesseldorf, Germany

PostPosted: Fri Jul 19, 2002 9:54 pm    Post subject: Re: a-ha! Reply with quote

zigg wrote:
Larde wrote:
I solved it by setting "Edit->Preferences->Appearance->Fonts->Display resolution" from "System setting" to "96dpi".


Out of all the suggestions here, that one did it. The text isn't squirming in Mozilla's form controls either now. Very interesting. xdpyinfo claims my dpi is currently 92.


Hey, fine! :-) You know, I almost turned off AA because it was so annoying when I finally found the solution. I already suggested that in the Tips&Tricks forum, but probably buried too deep in this thread to be noticed.

I just checked mine xdpyinfo again: It claims 90 dpi on my system. I am running a 1280x960 on 19".

Regards,
Larde.
_________________
Someday this will be my home... http://moonage.net/
I'll make you a deal
I'll say I came from Earth and my tongue is taped
Back to top
View user's profile Send private message
zigg
n00b
n00b


Joined: 18 Jun 2002
Posts: 8

PostPosted: Sat Jul 20, 2002 11:33 am    Post subject: Re: a-ha! Reply with quote

AutoBot wrote:
Actually I was referring more toward the pref("font.FreeType2.enable", true); line, but at least your issue has been resolved.


I figured that was the biggie. It does seem to already be on by default, shrug. :-)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum