From 8fce3735aabbe36d5fe5ab8f9fc25c1d7bb702d1 Mon Sep 17 00:00:00 2001 From: Yee Cheng Chin Date: Sun, 9 Dec 2018 20:51:20 -0800 Subject: [PATCH] Make pre-Mojave tabs also show the close button on hover over tab This makes them show up on tab hover, so you don't have to hover over the exact location of the close button to see it. --- src/MacVim/PSMTabBarControl/source/PSMYosemiteTabStyle.m | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MacVim/PSMTabBarControl/source/PSMYosemiteTabStyle.m b/src/MacVim/PSMTabBarControl/source/PSMYosemiteTabStyle.m index f51cceed44..0997cc00bb 100644 --- a/src/MacVim/PSMTabBarControl/source/PSMYosemiteTabStyle.m +++ b/src/MacVim/PSMTabBarControl/source/PSMYosemiteTabStyle.m @@ -381,6 +381,7 @@ void YosemiteNSDrawWindowBackground(NSRect rect, NSColor *color) NSRect closeButtonRect = [cell closeButtonRectForFrame:cellFrame]; NSImage *button = nil; + if ([cell isHighlighted]) button = closeButton; if ([cell closeButtonOver]) button = closeButtonOver; if ([cell closeButtonPressed]) button = closeButtonDown;