mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-24 08:49:42 +00:00
Fixed #159 URL is now below Password
Sorting columns is added (as mentioned in #64)
This commit is contained in:
@@ -242,13 +242,13 @@ NSString *const MPToolbarItemSearch = @"TOOLBAR_SEARCH";
|
||||
}
|
||||
|
||||
- (NSMenu *)_allocateSearchMenuTemplate {
|
||||
NSMenu *menu = [[NSMenu alloc] initWithTitle:NSLocalizedString(@"SEARCH_MENU", @"")];
|
||||
NSMenu *menu = [[NSMenu alloc] init];
|
||||
NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"CLEAR_RECENT_SEARCHES", @"") action:NULL keyEquivalent:@""];
|
||||
[item setTag:NSSearchFieldClearRecentsMenuItemTag];
|
||||
[menu addItem:item];
|
||||
|
||||
[menu addItem:[NSMenuItem separatorItem]];
|
||||
|
||||
|
||||
item = [[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"RECENT_SEARCHES", @"") action:NULL keyEquivalent:@""];
|
||||
[item setTag:NSSearchFieldRecentsTitleMenuItemTag];
|
||||
[menu addItem:item];
|
||||
|
||||
Reference in New Issue
Block a user