From e01d0491e82f3dadf35dae99653ed858d6a41c3c Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 17 Feb 2023 10:25:27 -0600 Subject: [PATCH] setting label to serviceItem name instead of id --- src/qml/presenter/PreviewSlideListDelegate.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/qml/presenter/PreviewSlideListDelegate.qml b/src/qml/presenter/PreviewSlideListDelegate.qml index e9aed71..ca40ce6 100644 --- a/src/qml/presenter/PreviewSlideListDelegate.qml +++ b/src/qml/presenter/PreviewSlideListDelegate.qml @@ -51,7 +51,8 @@ Item { /* anchors.leftMargin: Kirigami.Units.smallSpacing * 8 */ anchors.topMargin: Kirigami.Units.smallSpacing * 3 elide: Text.ElideRight - text: serviceItemId //ServiceItemModel.getItem(serviceItemId).name + text: ServiceItemModel.getItem(serviceItemId).name + font.bold: true /* font.family: "Quicksand Bold" */ } @@ -61,7 +62,7 @@ Item { hoverEnabled: true onClicked: { changeSlide(index); - /* showPassiveNotification(SlideModel.thumbnailVideo(model.videoBackground, model.serviceItemId, index)); */ + showPassiveNotification(model.serviceItemId); } cursorShape: Qt.PointingHandCursor propagateComposedEvents: true