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

Hide 'hide scrollbar and resize indicator' pref on Lion because it has no effect.

parent a9b91f1e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -526,6 +526,7 @@ static float versionNumber;
 
if (IsLionOrLater()) {
[lionStyleFullscreen setHidden:NO];
[hideScrollbar setHidden:YES];
} else {
[lionStyleFullscreen setHidden:YES];
}
Loading
Loading
@@ -1571,7 +1572,11 @@ static float versionNumber;
 
- (BOOL)hideScrollbar
{
return defaultHideScrollbar;
if (IsLionOrLater()) {
return NO;
} else {
return defaultHideScrollbar;
}
}
 
- (BOOL)smartPlacement
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