From 6419dc72a53d019abe6ec8a54073e90a6f08d7bd Mon Sep 17 00:00:00 2001 From: "Black Box Embedded, LLC" <64652300+blackboxembedded@users.noreply.github.com> Date: Sun, 15 Oct 2023 09:01:09 -0600 Subject: [PATCH] Fix comment Signed-off-by: Black Box Embedded, LLC <64652300+blackboxembedded@users.noreply.github.com> --- iphone/Maps/Classes/MapViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index 539170b226..8cfda863ce 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -710,7 +710,7 @@ NSString *const kPP2BookmarkEditingSegue = @"PP2BookmarkEditing"; - (NSArray *)keyCommands { NSArray *commands = @[ - [UIKeyCommand keyCommandWithInput:UIKeyInputDownArrow modifierFlags:0 action:@selector(zoomOut)], // Alternative, not shown when holding + [UIKeyCommand keyCommandWithInput:UIKeyInputDownArrow modifierFlags:0 action:@selector(zoomOut)], // Alternative, not shown when holding CMD [UIKeyCommand keyCommandWithInput:@"-" modifierFlags:UIKeyModifierCommand action:@selector(zoomOut) discoverabilityTitle:@"Zoom Out"], [UIKeyCommand keyCommandWithInput:UIKeyInputUpArrow modifierFlags:0 action:@selector(zoomIn)], // Alternative, not shown when holding CMD [UIKeyCommand keyCommandWithInput:@"=" modifierFlags:UIKeyModifierCommand action:@selector(zoomIn)], // Alternative, not shown when holding CMD