Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions qml/windowed/AppListView.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2023 - 2026 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

Expand Down Expand Up @@ -170,7 +170,7 @@ FocusScope {
leftMargin: 10
rightMargin: 10
}
visible: !Drag.active
opacity: !Drag.active ? 1 : 0
text: model.display
checkable: false
icon.name: (iconName && iconName !== "") ? iconName : "application-x-desktop"
Expand Down
4 changes: 2 additions & 2 deletions qml/windowed/FreeSortListView.qml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.
// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

Expand Down Expand Up @@ -298,7 +298,7 @@ Item {
ColorSelector.pressed: false
property Palette textColor: DStyle.Style.button.text
palette.windowText: ColorSelector.textColor
visible: !Drag.active && (typeof dndItem === "undefined" || dndItem.currentlyDraggedId !== model.desktopId)
opacity: !Drag.active && (typeof dndItem === "undefined" || dndItem.currentlyDraggedId !== model.desktopId) ? 1 : 0

ToolTip.text: text
ToolTip.delay: 500
Expand Down