mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-25 13:39:33 +00:00
Fixed #61 searching in passwords is now supported
Fixed #80 nested groups can be selected as templates or trash Trash UUID now get's stored correctly Enhanced and fixed some undo errors in moving groups and/or entries Added action names for moving groups/entries via drag and drop
This commit is contained in:
@@ -117,10 +117,12 @@
|
||||
NSString *draggedType = [types lastObject];
|
||||
if([draggedType isEqualToString:KPKGroupUTI]) {
|
||||
[self.draggedGroup moveToGroup:targetGroup atIndex:index];
|
||||
[self.draggedGroup.undoManager setActionName:NSLocalizedString(@"MOVE_GROUP", "")];
|
||||
return YES;
|
||||
}
|
||||
else if([draggedType isEqualToString:KPKUUIDUTI]) {
|
||||
[self.draggedEntry moveToGroup:targetGroup atIndex:index];
|
||||
[self.draggedEntry.undoManager setActionName:NSLocalizedString(@"MOVE_ENTRY", "")];
|
||||
return YES;
|
||||
}
|
||||
return NO;
|
||||
|
||||
Reference in New Issue
Block a user