只是想关闭功能时,我滚动我交换桌面。我已经删除了在
Desktop(right click) > Folder Settings > Mouse Actions > Vertical-Scroll > Switch Desktop 我和它战斗,它会停止,但它不会。有人知道怎么做吗?
发布于 2016-04-27 14:21:49
这是一个恼人的特性,特别是当您必须使用Touchpad时。我想你是在说当你在传呼机上滚动轮子时改变屏幕的功能(显示桌面的小部件,它是塑料的)。只需在以下配置文件中注释几行: /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)
}
}*/
}https://askubuntu.com/questions/647827
复制相似问题