只想关闭滚动切换桌面时的功能。我已删除了该功能
Desktop(right click) > Folder Settings > Mouse Actions > Vertical-Scroll > Switch Desktop
我努力让它停下来,但它就是不停下来。有人知道怎么做吗?
答案1
这是一个令人讨厌的功能,尤其是当您必须使用触摸板时。我认为您说的是当您在寻呼机上滚动滚轮时更改屏幕的功能(显示桌面的小部件,它是 plasmoid)。您只需在以下配置文件中注释几行:/usr/share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml
或多或少,在第 185 行你必须注释掉这块代码:
MouseArea {
id: desktopMouseArea
anchors.fill: parent
onClicked: pager.changeDesktop(desktopId);
/*
onWheel: {
if (wheel.angleDelta.y > 0 || wheel.angleDelta.x > 0) {
pager.changeDesktop((repeater.count + pager.currentDesktop - 2) % repeater.count)
} else {
pager.changeDesktop(pager.currentDesktop % repeater.count)
}
}*/
}