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.
This commit is contained in:
Nicolas Danelon 2024-07-01 07:02:34 -03:00 committed by Tim Flynn
parent 5f06594bbd
commit af90978454
Notes: sideshowbarker 2024-07-16 23:05:02 +09:00

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;
}