UI/AppKit: Make the header buttons more accessible

By Setting setBordered propperty on header buttons to `Yes` this
path makes the whole button clickable. Previously the only the
icon was clickable, now it's easy to click.

(cherry picked from commit af909784547c4f0ea8218ce464f45b3a1b0f4cb7)
This commit is contained in:
Nicolas Danelon 2024-07-01 07:02:34 -03:00 committed by Nico Weber
parent cf139d9bd0
commit cfa3a91fb5

View file

@ -379,7 +379,8 @@ static NSString* const TOOLBAR_TAB_OVERVIEW_IDENTIFIER = @"ToolbarTabOverviewIde
if (tooltip) {
[button setToolTip:tooltip];
}
[button setBordered:NO];
[button setBordered:YES];
return button;
}