Skip to content

Commit

Permalink
align activity text with "Sync now" text
Browse files Browse the repository at this point in the history
Signed-off-by: Matthieu Gallien <[email protected]>
  • Loading branch information
mgallien authored and backportbot-nextcloud[bot] committed May 23, 2023
1 parent 9f1fb2f commit c84bf30
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions src/gui/tray/ActivityItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ ItemDelegate {

Layout.fillWidth: true
Layout.minimumHeight: Style.minActivityHeight
Layout.preferredWidth: parent.width

showDismissButton: model.isDismissable

Expand Down
18 changes: 9 additions & 9 deletions src/gui/tray/ActivityItemContent.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {{}}
Expand All @@ -23,19 +23,19 @@ Item {

signal dismissButtonClicked()

spacing: Style.standardSpacing

Item {
id: thumbnailItem

readonly property int imageWidth: width * (1 - Style.thumbnailImageSizeReduction)
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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/gui/tray/ActivityList.qml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ScrollView {
signal activityItemClicked(int index)

contentWidth: availableWidth
padding: 1
padding: 0
focus: false

ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
Expand Down
2 changes: 1 addition & 1 deletion theme/Style/Style.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c84bf30

Please sign in to comment.