diff --git a/plasmoid/package/contents/ui/task/TaskDelegate.qml b/plasmoid/package/contents/ui/task/TaskDelegate.qml index e45bfaad4..a7694fb68 100644 --- a/plasmoid/package/contents/ui/task/TaskDelegate.qml +++ b/plasmoid/package/contents/ui/task/TaskDelegate.qml @@ -762,7 +762,7 @@ MouseArea{ ////disable hover effect/// if (isWindow && root.highlightWindows && !containsMouse) { - root.windowsHovered(model.LegacyWinIdList, false); + root.windowsHovered(model.WinIdList, false); } } @@ -969,7 +969,7 @@ MouseArea{ else{ if (model.IsGroupParent) { if (Latte.WindowSystem.compositingActive && backend.canPresentWindows()) { - root.presentWindows(model.LegacyWinIdList); + root.presentWindows(model.WinIdList); } else { if ((windowsPreviewDlg.visualParent === previewsVisualParent)&&(windowsPreviewDlg.visible)) { windowsPreviewDlg.hide(3); @@ -1024,7 +1024,7 @@ MouseArea{ } toolTipDelegate.windows = Qt.binding(function() { - return model.LegacyWinIdList; + return model.WinIdList; }); toolTipDelegate.isGroup = Qt.binding(function() { return model.IsGroupParent == true; @@ -1427,7 +1427,7 @@ MouseArea{ mainItemContainer.preparePreviewWindow(false); windowsPreviewDlg.show(mainItemContainer); } else if (mainItemContainer.isWindow && root.highlightWindows) { - root.windowsHovered(model.LegacyWinIdList, mainItemContainer.containsMouse); + root.windowsHovered(model.WinIdList, mainItemContainer.containsMouse); } }