Bug 79464 - gtk2.x apps highlighting appears as black text on white background despite color scheme
Summary: gtk2.x apps highlighting appears as black text on white background despite co...
Status: RESOLVED FIXED
Alias: None
Product: kcontrol
Classification: Miscellaneous
Component: kcmcolors (show other bugs)
Version: unspecified
Platform: Slackware Linux
: NOR normal
Target Milestone: ---
Assignee: Unassigned bugs mailing-list
URL:
Keywords:
: 78091 (view as bug list)
Depends on:
Blocks:
 
Reported: 2004-04-12 06:10 UTC by Erin
Modified: 2004-06-25 13:12 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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. ***