From 38e61b96a5225569721a49c93767ef164b40cb57 Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Wed, 3 Jul 2019 12:05:43 +0200 Subject: [PATCH] Added missing palettlabel to toolbar items to show up in customizing sheet --- MacPass/MPToolbarDelegate.m | 1 + 1 file changed, 1 insertion(+) diff --git a/MacPass/MPToolbarDelegate.m b/MacPass/MPToolbarDelegate.m index f03444c7..54858ec7 100644 --- a/MacPass/MPToolbarDelegate.m +++ b/MacPass/MPToolbarDelegate.m @@ -111,6 +111,7 @@ NSString *const MPToolbarItemAutotype = @"TOOLBAR_AUTOTYPE"; item = [[MPToolbarItem alloc] initWithItemIdentifier:itemIdentifier]; NSString *itemLabel = [self _localizedLabelForToolbarItemIdentifier:itemIdentifier]; item.label = itemLabel; + item.paletteLabel = itemLabel; if([itemIdentifier isEqualToString:MPToolbarItemAction]) { NSPopUpButton *popupButton = [[NSPopUpButton alloc] initWithFrame:NSMakeRect(0, 0, 50, 32) pullsDown:YES];