summaryrefslogtreecommitdiff
path: root/x11/kdebase3/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kdebase3/patches/patch-ae')
-rw-r--r--x11/kdebase3/patches/patch-ae20
1 files changed, 0 insertions, 20 deletions
diff --git a/x11/kdebase3/patches/patch-ae b/x11/kdebase3/patches/patch-ae
deleted file mode 100644
index b39d05ed114..00000000000
--- a/x11/kdebase3/patches/patch-ae
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-ae,v 1.8 2005/04/14 20:53:30 markd Exp $
-
---- kcontrol/krdb/krdb.cpp.orig 2004-07-17 18:52:04.000000000 +0100
-+++ kcontrol/krdb/krdb.cpp
-@@ -384,7 +386,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;