Opened 16 years ago
Closed 16 years ago
#3219 closed bug (fixed)
[PATCH] small bug in InputServer
Reported by: | karmak | Owned by: | korli |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | Servers/input_server | Version: | R1/pre-alpha1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | x86 |
Description
While hunting for #3176, i found a little bug in InputServer.ccp
; just apply this patch to correct it :
Index: servers/input/InputServer.cpp =================================================================== --- servers/input/InputServer.cpp (revision 28801) +++ servers/input/InputServer.cpp (working copy) @@ -736,7 +780,7 @@ fKeys.num_key = key; break; case B_SCROLL_LOCK: - fKeys.num_key = key; + fKeys.scroll_key = key; break; case B_LEFT_SHIFT_KEY: fKeys.left_shift_key = key;
Note:
See TracTickets
for help on using tickets.
Applied in hrev28805.