Bug 79464

Summary: gtk2.x apps highlighting appears as black text on white background despite color scheme
Product: kcontrol Reporter: Erin <ethnite>
Component: kcmcolorsAssignee: Unassigned bugs mailing-list <unassigned-bugs>
Status: RESOLVED FIXED    
Severity: normal CC: mikey
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Slackware   
OS: Linux   
Latest Commit: Version Fixed In:

Description Erin 2004-04-12 06:10:38 UTC
Version:            (using KDE KDE 3.2.1)
Installed from:    Slackware Packages
OS:          Linux

in GTK 2.x programs like GAIM and AbiWord 2.x, when using "Apply colors to non-KDE Applications" it will show the selected text as black text on white background, no matter what your color scheme is.  It is impossible to determine what is selected and what isnt in the default color schemes.
Comment 1 Erin 2004-04-12 06:13:12 UTC
this happens in both KDE 3.2 and 3.2.1
Comment 2 Lubos Lunak 2004-04-16 11:10:12 UTC
CVS commit by lunakl: 

Fix #79464.
CCMAIL: 79464-done@bugs.kde.org


  M +2 -2      krdb.cpp   1.57


--- kdebase/kcontrol/krdb/krdb.cpp  #1.56:1.57
@@ -344,6 +344,6 @@ static void createGtkrc( bool exportColo
         t << "  base[SELECTED] = " << color( cg.highlight() ) << endl;
         t << "  base[INSENSITIVE] = " << color( cg.background() ) << endl;
-        t << "  base[ACTIVE] = " << color( cg.base() ) << endl;
-        t << "  base[PRELIGHT] = " << color( cg.base() ) << endl;
+        t << "  base[ACTIVE] = " << color( cg.highlight() ) << endl;
+        t << "  base[PRELIGHT] = " << color( cg.highlight() ) << endl;
         t << endl;
         t << "  text[NORMAL] = " << color( cg.text() ) << endl;


Comment 3 Waldo Bastian 2004-06-25 13:12:45 UTC
*** Bug 78091 has been marked as a duplicate of this bug. ***