changes: * general: More and better usage of icons in different applications * general: Fix link order for IRIX * kappfinder: Fixed menu structure and added icons of several applications * kicker: Don't show unimplemented "About" and "Preferences" for universal sidebar * kicker: Fix two panels on different xinerama screens affecting their placement. * konqueror/kdesktop: Fix konqueror is ignoring umask when creating new files * konqueror/kdesktop: Fix filename suggestion when moving files applies to all subsequent files * konqueror: Made all items in the "Go" menu open in the current Konqueror window * konqueror: Now Ctrl+Enter opens a tab with default background setting * konqueror: Holding Shift while opening a tab inverses the "open tabs ini background" setting * konqueror: "[FMSettings] TabPosition=Bottom" in konquerorrc lets the tabbar appear at bottom * konqueror: Fix konqueror listview rightclick always selects file * konsole: Added the ability to fetch the shell PID per session via DCOP * konsole: Fix terminal size display is covered by kwin size display * konsole: Fix Default rendition should be used when clearing screen areas * konsole: Fix can't change/save Keytabs in the Session Editor * konsole: Fix for crashes on exit. * konsole: Fix transparant background updates * kio_fish: Fixes for copying into a symlink to a folder, and for copying over a directory that already exists * kwin: Keep properly splashscreens above their mainwindows. * kwin: Restore focus when a broken application sets it to nowhere. * kwin: Fix dialog placement problems with Konqueror with Qt-3.2.x . * kwin: Fix problem with minimizing xmms. * kwin: Fix active desktop borders while moving improper initialization. * kwin: Fix Shift+middle mouse button action in Konqueror. * klipper: Fix Klipper reacting to its own clipboard changes. * khotkeys: Mouse gestures are globally disabled by default. * drkonqi: Fix valid backtraces sometimes being reported as useless. * kcontrol: Fix colorsheme file name conflict
20 lines
704 B
Text
20 lines
704 B
Text
$NetBSD: patch-ae,v 1.6 2004/06/10 11:51:52 markd Exp $
|
|
|
|
--- kcontrol/krdb/krdb.cpp.orig 2004-04-04 19:42:18.000000000 +1200
|
|
+++ kcontrol/krdb/krdb.cpp
|
|
@@ -384,7 +384,14 @@ static void createGtkrc( bool exportColo
|
|
// not every button, checkbox, etc.
|
|
t << "style \"MenuItem\"" << endl;
|
|
t << "{" << endl;
|
|
- t << " bg[PRELIGHT] = " << color( cg.highlight() ) << endl;
|
|
+ if (cg.highlight() == cg.text())
|
|
+ {
|
|
+ t << " bg[PRELIGHT] = " << color( cg.background() ) << endl;
|
|
+ }
|
|
+ else
|
|
+ {
|
|
+ t << " bg[PRELIGHT] = " << color( cg.highlight() ) << endl;
|
|
+ }
|
|
t << "}" << endl;
|
|
t << endl;
|
|
t << "class \"*MenuItem\" style \"MenuItem\"" << endl;
|