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

When you create a new window while already in lion fullscreen mode, ignore the...

When you create a new window while already in lion fullscreen mode, ignore the zoom-vertically-only setting. Fixes bug 1312.
parent 9d9a460c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -1789,7 +1789,7 @@ NSString *sessionsKey = @"sessions";
BOOL verticalOnly = NO;
 
BOOL maxVerticallyPref;
if ([[self ptyWindow] isTogglingLionFullScreen]) {
if (togglingLionFullScreen_ || [[self ptyWindow] isTogglingLionFullScreen] || [self lionFullScreen]) {
// Going into lion fullscreen mode. Disregard the "maximize vertically"
// preference.
verticalOnly = NO;
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