Skip to content
Snippets Groups Projects
Commit 9d9a460c authored by George Nachman's avatar George Nachman
Browse files

Make hold-cmd work in lion fullscreen. Fixes bug 1313.

parent a0c95c39
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3658,7 +3658,7 @@ NSString *sessionsKey = @"sessions";
}
}
 
if (!_fullScreen) {
if (![self anyFullScreen]) {
return;
}
if (!temporarilyShowingTabs_ && fullscreenTabs_) {
Loading
Loading
@@ -3696,7 +3696,7 @@ NSString *sessionsKey = @"sessions";
[fullScreenTabviewTimer_ release];
fullScreenTabviewTimer_ = nil;
// Don't show the tabbar if you're holding cmd while doing find cursor
if (_fullScreen && ![[[self currentSession] TEXTVIEW] isFindingCursor]) {
if ([self anyFullScreen] && ![[[self currentSession] TEXTVIEW] isFindingCursor]) {
[self showFullScreenTabControl];
}
}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment