Correct height of header when tabs above document is enabled

Previously this appeared correct because once you clicked the minimum height of the pop-up menu set it to the correct height. Corrects an issue noted by @fatiotus in #728.
This commit is contained in:
Michael Sheets
2013-02-18 20:46:55 -06:00
parent 6c48d1d9d7
commit 40f728ff8f

View File

@@ -86,6 +86,6 @@ static NSPopUpButton* OakCreatePopUpButton ()
- (NSSize)intrinsicContentSize
{
return NSMakeSize(NSViewNoInstrinsicMetric, self.matchTabBarHeight ? 20 : 24);
return NSMakeSize(NSViewNoInstrinsicMetric, self.matchTabBarHeight ? 21 : 24);
}
@end