From 7b38baa1317f83c2aa7a4d2d7c631b816948de92 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Mon, 2 May 2022 21:53:46 +0200 Subject: [PATCH] Fix borked prop spelling Signed-off-by: Claudio Cambra --- src/gui/tray/ActivityItemContent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/tray/ActivityItemContent.qml b/src/gui/tray/ActivityItemContent.qml index 4645d8f38c46d..c5408c0fc98af 100644 --- a/src/gui/tray/ActivityItemContent.qml +++ b/src/gui/tray/ActivityItemContent.qml @@ -29,7 +29,7 @@ RowLayout { Layout.preferredHeight: model.thumbnail && model.thumbnail.isMimeTypeIcon ? Style.trayListItemIconSize * 0.9 : Style.trayListItemIconSize readonly property int imageWidth: width * (1 - Style.thumbnailImageSizeReduction) readonly property int imageHeight: height * (1 - Style.thumbnailImageSizeReduction) - readonly property int thumbnailRadius: mdeol.thumbnial && model.thumbnail.isUserAvatar ? width / 2 : 3 + readonly property int thumbnailRadius: model.thumbnail && model.thumbnail.isUserAvatar ? width / 2 : 3 Loader { id: thumbnailImageLoader