mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
Camino - Missed file from Bug 181712
This commit is contained in:
parent
636cfbd62e
commit
d0af9cd09f
@ -116,7 +116,10 @@ static const int kEscapeKeyCode = 53;
|
||||
BOOL shiftKeyIsDown = (([theEvent modifierFlags] & NSShiftKeyMask) != 0);
|
||||
handled = [windowController handleCommandReturn:shiftKeyIsDown];
|
||||
} else if (keyChar == '+') {
|
||||
[windowController biggerTextSize:nil];
|
||||
if ([windowController canMakeTextBigger])
|
||||
[windowController makeTextBigger:nil];
|
||||
else
|
||||
NSBeep();
|
||||
handled = YES;
|
||||
} else if (keyChar >= '1' && keyChar <= '9') {
|
||||
BOOL cmdKeyIsDown = (([theEvent modifierFlags] & NSCommandKeyMask) != 0);
|
||||
|
Loading…
Reference in New Issue
Block a user