[PATCH weston 3/3] Fix inverted LEDs

Daniel Stone daniel at fooishbar.org
Mon Jun 4 03:40:48 PDT 2012


Turns out it's probably better to post the new state rather than the
old.

Signed-off-by: Daniel Stone <daniel at fooishbar.org>
---
 src/compositor.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compositor.c b/src/compositor.c
index 1383966..b904861 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1793,7 +1793,7 @@ update_modifier_state(struct weston_seat *seat, uint32_t key, uint32_t state)
 					  seat->xkb_info.scroll_led))
 		leds |= LED_SCROLL_LOCK;
 	if (leds != seat->xkb_state.leds && seat->led_update)
-		seat->led_update(seat, seat->xkb_state.leds);
+		seat->led_update(seat, leds);
 	seat->xkb_state.leds = leds;
 
 	return ret;
-- 
1.7.10



More information about the wayland-devel mailing list