summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-05-08 13:36:21 -0400
committerJoel Fischer <joeljfischer@gmail.com>2017-05-08 13:36:21 -0400
commit7e1306d3800fafcc290d32430aba0593403fddcf (patch)
treee7470a7e7ec88c03f38c29d65a6be03c59518f75
parent3d541aa36e21f9d95a38aab411e03b667a62269e (diff)
downloadsdl_ios-7e1306d3800fafcc290d32430aba0593403fddcf.tar.gz
Fix #612
* `SDLMenuParams initWithMenuParams:parentId:position:` should properly set `position`
-rw-r--r--SmartDeviceLink/SDLMenuParams.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLMenuParams.m b/SmartDeviceLink/SDLMenuParams.m
index aa41f4b4a..8292f52d0 100644
--- a/SmartDeviceLink/SDLMenuParams.m
+++ b/SmartDeviceLink/SDLMenuParams.m
@@ -27,7 +27,7 @@
}
self.parentID = @(parentId);
- self.position = @(parentId);
+ self.position = @(position);
return self;
}