mirror of
https://github.com/textmate/textmate.git
synced 2026-01-20 04:08:04 -05:00
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:
@@ -86,6 +86,6 @@ static NSPopUpButton* OakCreatePopUpButton ()
|
||||
|
||||
- (NSSize)intrinsicContentSize
|
||||
{
|
||||
return NSMakeSize(NSViewNoInstrinsicMetric, self.matchTabBarHeight ? 20 : 24);
|
||||
return NSMakeSize(NSViewNoInstrinsicMetric, self.matchTabBarHeight ? 21 : 24);
|
||||
}
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user