Index: src/servers/input/InputServer.cpp
===================================================================
--- src/servers/input/InputServer.cpp	(リビジョン 25350)
+++ src/servers/input/InputServer.cpp	(作業コピー)
@@ -1525,9 +1525,10 @@
 				PRINT(("SanitizeEvents: %lx, %lx\n", fKeyInfo.modifiers,
 					fKeyInfo.key_states[KEY_Spacebar >> 3]));
 
-				int8 byte;
-				if ((fKeyInfo.modifiers & B_COMMAND_KEY) != 0
-					&& event->FindInt8("byte", &byte) == B_OK && byte == ' ') {
+				int8 byte = 0;
+				event->FindInt8("byte", &byte);
+				if ((fKeyInfo.modifiers & B_COMMAND_KEY) != 0 && byte == ' '
+					|| static_cast<uint8>(byte) == 0xf3) {
 					SetNextMethod(!fKeyInfo.modifiers & B_SHIFT_KEY);
 
 					// this event isn't sent to the user
