Skip to content

Commit

Permalink
Be less restrictive with handling of Enter or Return keys in Articles…
Browse files Browse the repository at this point in the history
… tab

Fix issue #454
  • Loading branch information
barijaona committed Jul 2, 2015
1 parent d8b0784 commit a2f7519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppController.m
Expand Up @@ -2744,7 +2744,7 @@ -(BOOL)handleKeyDown:(unichar)keyChar withFlags:(NSUInteger)flags
[self viewSourceHomePage:self];
return YES;
}
else if ([mainWindow firstResponder] == [mainArticleView mainView])
else
{
if (flags & NSAlternateKeyMask)
[self viewArticlePagesInAlternateBrowser:self];
Expand Down

0 comments on commit a2f7519

Please sign in to comment.