From 0ba16229c5d54a30339b22c7d22f58f795f99e3b Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Mon, 22 May 2023 17:33:56 +0200 Subject: [PATCH] align activity text with "Sync now" text Signed-off-by: Matthieu Gallien --- src/gui/tray/ActivityItem.qml | 1 + src/gui/tray/ActivityItemContent.qml | 18 +++++++++--------- src/gui/tray/ActivityList.qml | 2 +- theme/Style/Style.qml | 2 +- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/src/gui/tray/ActivityItem.qml b/src/gui/tray/ActivityItem.qml index dab69f2fd..20fa337c1 100644 --- a/src/gui/tray/ActivityItem.qml +++ b/src/gui/tray/ActivityItem.qml @@ -37,6 +37,7 @@ ItemDelegate { Layout.fillWidth: true Layout.minimumHeight: Style.minActivityHeight + Layout.preferredWidth: parent.width showDismissButton: model.isDismissable diff --git a/src/gui/tray/ActivityItemContent.qml b/src/gui/tray/ActivityItemContent.qml index 5ff210449..e3707e5b7 100644 --- a/src/gui/tray/ActivityItemContent.qml +++ b/src/gui/tray/ActivityItemContent.qml @@ -6,7 +6,7 @@ import QtGraphicalEffects 1.15 import Style 1.0 import com.nextcloud.desktopclient 1.0 -Item { +RowLayout { id: root property variant activityData: {{}} @@ -23,6 +23,8 @@ Item { signal dismissButtonClicked() + spacing: Style.standardSpacing + Item { id: thumbnailItem @@ -30,12 +32,10 @@ Item { readonly property int imageHeight: height * (1 - Style.thumbnailImageSizeReduction) readonly property int thumbnailRadius: model.thumbnail && model.thumbnail.isUserAvatar ? width / 2 : 3 - anchors.left: parent.left - anchors.top: parent.top - anchors.bottom: parent.bottom + Layout.fillHeight: true - implicitHeight: model.thumbnail && model.thumbnail.isMimeTypeIcon ? root.iconSize * 0.9 : root.iconSize implicitWidth: root.iconSize + implicitHeight: model.thumbnail && model.thumbnail.isMimeTypeIcon ? root.iconSize * 0.9 : root.iconSize Loader { id: thumbnailImageLoader @@ -118,10 +118,10 @@ Item { ColumnLayout { id: activityContentLayout - anchors.left: thumbnailItem.right - anchors.right: parent.right - anchors.top: parent.top - anchors.bottom: parent.bottom + Layout.fillHeight: true + Layout.fillWidth: true + Layout.maximumWidth: root.width - Style.standardSpacing - root.iconSize + implicitWidth: root.width - Style.standardSpacing - root.iconSize spacing: Style.smallSpacing diff --git a/src/gui/tray/ActivityList.qml b/src/gui/tray/ActivityList.qml index b0c30fbf0..436a79e5b 100644 --- a/src/gui/tray/ActivityList.qml +++ b/src/gui/tray/ActivityList.qml @@ -15,7 +15,7 @@ ScrollView { signal activityItemClicked(int index) contentWidth: availableWidth - padding: 1 + padding: 0 focus: false ScrollBar.horizontal.policy: ScrollBar.AlwaysOff diff --git a/theme/Style/Style.qml b/theme/Style/Style.qml index 365697dc5..b0ba7eb08 100644 --- a/theme/Style/Style.qml +++ b/theme/Style/Style.qml @@ -50,7 +50,7 @@ QtObject { // this amount to properly center the sync status icon to the thumbnail // images, which will work so long as the thumbnails are left aligned - property int standardSpacing: 10 + property int standardSpacing: trayHorizontalMargin property int smallSpacing: 5 property int extraSmallSpacing: 2