Changeset 25421

Show
Ignore:
Timestamp:
05/10/08 08:52:53 (6 days ago)
Author:
korli
Message:
B_ZENKAKU_HANKAKU doesn't need B_COMMAND_KEY (I misunderstood the patch).
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • haiku/trunk/src/servers/input/InputServer.cpp

    r25416 r25421  
    15281528                                int8 byte = 0; 
    15291529                                event->FindInt8("byte", &byte); 
    1530                                 if ((fKeyInfo.modifiers & B_COMMAND_KEY) != 0  
    1531                                         && (byte == ' ' || static_cast<uint8>(byte) == B_ZENKAKU_HANKAKU)) { 
     1530                                if (((fKeyInfo.modifiers & B_COMMAND_KEY) != 0 && byte == ' ') 
     1531                                        || static_cast<uint8>(byte) == B_ZENKAKU_HANKAKU) { 
    15321532                                        SetNextMethod(!fKeyInfo.modifiers & B_SHIFT_KEY); 
    15331533