6f1b592e59
- xserver-1.5.99.902-xkb-colors.patch: don't confuse src and dst when copying color labels (#469572)
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 97b23d4a932a493c5f6dc470925a67ad684e4f0f Mon Sep 17 00:00:00 2001
|
|
From: Peter Hutterer <peter.hutterer@who-t.net>
|
|
Date: Fri, 13 Feb 2009 09:56:22 +1000
|
|
Subject: [PATCH] xkb: Fix wrong colour reference in XKB geometry copying. #20081
|
|
|
|
base_color and label_color need to reference the color in the destination, not
|
|
in the source.
|
|
|
|
X.Org Bug 20081 <http://bugs.freedesktop.org/show_bug.cgi?id=20081>
|
|
|
|
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
|
|
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
|
|
---
|
|
xkb/xkbUtils.c | 4 ++--
|
|
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/xkb/xkbUtils.c b/xkb/xkbUtils.c
|
|
index aa63b35..9a1edc9 100644
|
|
--- a/xkb/xkbUtils.c
|
|
+++ b/xkb/xkbUtils.c
|
|
@@ -1955,9 +1955,9 @@ _XkbCopyGeom(XkbDescPtr src, XkbDescPtr dst)
|
|
|
|
strcpy(dst->geom->label_font, src->geom->label_font);
|
|
i = XkbGeomColorIndex(src->geom, src->geom->label_color);
|
|
- dst->geom->label_color = &(src->geom->colors[i]);
|
|
+ dst->geom->label_color = &(dst->geom->colors[i]);
|
|
i = XkbGeomColorIndex(src->geom, src->geom->base_color);
|
|
- dst->geom->base_color = &(src->geom->colors[i]);
|
|
+ dst->geom->base_color = &(dst->geom->colors[i]);
|
|
}
|
|
else {
|
|
if (dst->geom->label_font) {
|
|
--
|
|
1.6.0.6
|
|
|