summaryrefslogtreecommitdiff
path: root/Example Apps/Example Swift
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-05-12 15:31:17 -0400
committerGitHub <noreply@github.com>2020-05-12 15:31:17 -0400
commitdc8f3b11bcdc118db6be6ed79fa48b18d5b5bec1 (patch)
tree5270917202f1e30286dca0b9f4ca0202be5ed531 /Example Apps/Example Swift
parentc944704c906d0ad29ad4e41a562dc4729bb93507 (diff)
parent715353af7602caa9a2ed309a0e36a90cc96a3886 (diff)
downloadsdl_ios-dc8f3b11bcdc118db6be6ed79fa48b18d5b5bec1.tar.gz
Merge pull request #1657 from smartdevicelink/bugfix/issue-1580-add-artwork-to-vehicle-data-menu-items
Update example apps with icons for vehicle data menu items
Diffstat (limited to 'Example Apps/Example Swift')
-rw-r--r--Example Apps/Example Swift/MenuManager.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/Example Apps/Example Swift/MenuManager.swift b/Example Apps/Example Swift/MenuManager.swift
index 2f1b92ec5..cdf478149 100644
--- a/Example Apps/Example Swift/MenuManager.swift
+++ b/Example Apps/Example Swift/MenuManager.swift
@@ -62,7 +62,7 @@ private extension MenuManager {
/// - Returns: A SDLMenuCell object
class func menuCellGetAllVehicleData(with manager: SDLManager) -> SDLMenuCell {
let submenuItems = allVehicleDataTypes.map { submenuName in
- SDLMenuCell(title: submenuName, icon: nil, voiceCommands: nil, handler: { triggerSource in
+ SDLMenuCell(title: submenuName, icon: SDLArtwork(staticIcon: .settings), voiceCommands: nil, handler: { triggerSource in
VehicleDataManager.getAllVehicleData(with: manager, triggerSource: triggerSource, vehicleDataType: submenuName)
})
}