summaryrefslogtreecommitdiff
path: root/Example Apps/Example Swift/MenuManager.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Example Apps/Example Swift/MenuManager.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)
})
}