Changeset 284

Show
Ignore:
Timestamp:
30-04-2008 19:21:41 (5 years ago)
Author:
jppavao
Message:

Fixed a crasher bug in the roster table view triggered by typing any dead key while the roster table has focus.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lilypad/Sources/JKGroupTableView.m

    r267 r284  
    312312- (void)keyDown:(NSEvent *)event 
    313313{ 
    314         unichar key = [[event characters] characterAtIndex:0]; 
     314        NSString *characters = [event characters]; 
     315        unichar key = ([characters length] == 0 ? 0 : [characters characterAtIndex:0]); 
    315316         
    316317        switch (key) {