Skip to content
Merged
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
15 changes: 15 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
dde-shell (0.0.12) unstable; urgency=medium

* fix: popup window cannot show on first run
* chore: add open workspace item
* fix: After logging out, the workspace icons are not displayed
* fix: some icon not clear
* refact: update ColorSelector family for dock panel
* fix: solve the problem of blurry icons in the tray area
* fix: preview title not elided
* fix: icon blurry
* fix: text color of ToolTip doesn't change with theme
* fix: solve the problem of the dock jumping when the height changes

-- tsic404 <liuheng@deepin.org> Wed, 24 Apr 2024 15:30:04 +0800

dde-shell (0.0.11) unstable; urgency=medium

* fix: don't emit FrontendWindowRectChanged signal
Expand Down
10 changes: 7 additions & 3 deletions panels/dock/taskmanager/package/TaskManager.qml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,16 @@ ContainmentItem {
implicitHeight: useColumnLayout ? Panel.rootObject.dockItemMaxSize * 0.8 : Panel.rootObject.dockItemMaxSize

onEntered: function(drag) {
visualModel.items.move((drag.source as AppItem).visualIndex, app.visualIndex)
if (drag.keys.includes("text/x-dde-dock-dnd-appid")) {
visualModel.items.move((drag.source as AppItem).visualIndex, app.visualIndex)
}
}

onDropped: function(drop) {
drop.accept()
taskmanager.Applet.dataModel.moveTo(drop.source.itemId, visualIndex)
if (drop.keys.includes("text/x-dde-dock-dnd-appid")) {
drop.accept()
taskmanager.Applet.dataModel.moveTo(drop.source.itemId, visualIndex)
}
}

property int visualIndex: DelegateModel.itemsIndex
Expand Down