summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2021-08-24 13:22:53 -0400
committerJoel Fischer <joeljfischer@gmail.com>2021-08-24 13:22:53 -0400
commit1e2a7fce31231f8945d2f36f6f70f5cbe87925b0 (patch)
tree4fc3c036ade6418d2c9250ee10a3452e26924195
parent829513cee98ff19437074055028e9a7ca85d2024 (diff)
downloadsdl_ios-1e2a7fce31231f8945d2f36f6f70f5cbe87925b0.tar.gz
Menu fixes
* Fixed menu handlers not using current menu
-rw-r--r--SmartDeviceLink/private/SDLMenuManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/private/SDLMenuManager.m b/SmartDeviceLink/private/SDLMenuManager.m
index 792484a88..9bae9f7b8 100644
--- a/SmartDeviceLink/private/SDLMenuManager.m
+++ b/SmartDeviceLink/private/SDLMenuManager.m
@@ -353,7 +353,7 @@ NS_ASSUME_NONNULL_BEGIN
- (void)sdl_commandNotification:(SDLRPCNotificationNotification *)notification {
SDLOnCommand *onCommand = (SDLOnCommand *)notification.notification;
- [self sdl_callHandlerForCells:self.menuCells command:onCommand];
+ [self sdl_callHandlerForCells:self.currentMenuCells command:onCommand];
}
- (void)sdl_displayCapabilityDidUpdate {