Camino - Missed file from Bug 181712

This commit is contained in:
stridey%gmail.com 2006-09-12 06:49:42 +00:00
parent 636cfbd62e
commit d0af9cd09f

View File

@ -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);