ports/105886: x11/kdebase3 bug in Xft/freetype anti-alias setting on clean start
Bengt Ahlgren
bengta at sics.se
Sun Nov 26 21:10:39 UTC 2006
>Number: 105886
>Category: ports
>Synopsis: x11/kdebase3 bug in Xft/freetype anti-alias setting on clean start
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Sun Nov 26 21:10:07 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator: Bengt Ahlgren
>Release: FreeBSD 6.1-RELEASE-p6 i386
>Organization:
SICS - Swedish Institute of Computer Science, Stockholm, Sweden
>Environment:
System: FreeBSD 6.2-RC1, kdebase 3.5.4
>Description:
On clean start of KDE (no ~/.fonts.config or any Xft settings in
~/.kde/share/config/kdeglobals), Xft settings are incorrect
(anti-alias is off):
zeus> xrdb -query | grep Xft
Xft.antialias: 0
Xft.hinting: 1
Xft.hintstyle: hintmedium
>How-To-Repeat:
Clean install, or remove ~/.fonts.config and Xft settings in
~/.kde/share/config/kdeglobals, and start KDE
>Fix:
I found this patch that fixes the problem:
http://www.sisyphus.ru/srpm/kdebase/patches/63
--- kdebase/kcontrol/krdb/krdb.cpp.ark 2006-06-25 20:11:25.000000000 +0200
+++ kdebase/kcontrol/krdb/krdb.cpp 2006-06-25 20:11:31.000000000 +0200
@@ -515,7 +515,7 @@
subPixel(kglobals.readEntry("XftSubPixel"));
contents += "Xft.antialias: ";
- if(kglobals.readBoolEntry("XftAntialias", false))
+ if(kglobals.readBoolEntry("XftAntialias", true))
contents += "1";
else
contents += "0";
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list