Skip to content

Commit

Permalink
fix: Hide image operation button group on recently delete view
Browse files Browse the repository at this point in the history
   Hide image operation button group on recently delete view

Log: Hide image operation button group on recently delete view
Bug: https://pms.uniontech.com/bug-view-192935.html
  • Loading branch information
starhcq committed Jul 24, 2024
1 parent fa23f3b commit e187575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qml/AlbumTitle.qml
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ TitleBar {
Layout.alignment: Qt.AlignRight
Layout.minimumWidth: iconSize * 3 + iconSpacing * (3 - 1)
ToolButton {
visible: GStatus.selectedPaths.length === 0 || GStatus.currentViewType === Album.Types.ViewDevice
visible: GStatus.selectedPaths.length === 0 || GStatus.currentViewType === Album.Types.ViewDevice || GStatus.currentViewType === Album.Types.ViewRecentlyDeleted
id: titleImportBtn
Layout.preferredWidth: iconSize
Layout.preferredHeight: iconSize
Expand Down

0 comments on commit e187575

Please sign in to comment.