fix bottom gesture

This commit is contained in:
Marco Martin 2020-07-17 18:12:07 +02:00
parent d4e443104a
commit ead97b2399
2 changed files with 4 additions and 4 deletions

View file

@ -83,7 +83,7 @@ NanoShell.FullScreenOverlay {
}
}
onOffsetChanged: tasksView.contentY = offset
onOffsetChanged: tasksView.contentY = offset + grid.y
onVisibleChanged: {
if (!visible) {
tasksView.contentY = 0;

View file

@ -81,6 +81,7 @@ PlasmaCore.ColorScope {
property int oldMouseY: 0
property int startMouseY: 0
property bool isDragging: false
property bool opening: false
drag.filterChildren: true
function managePressed(mouse) {
startMouseY = oldMouseY = mouse.y;
@ -96,6 +97,7 @@ PlasmaCore.ColorScope {
}
taskSwitcher.offset = taskSwitcher.offset - (mouse.y - oldMouseY);
opening = oldMouseY > mouse.y;
oldMouseY = mouse.y;
if (taskSwitcher.visibility == Window.Hidden && taskSwitcher.offset > -taskSwitcher.height + units.gridUnit && taskSwitcher.tasksCount) {
taskSwitcher.showFullScreen();
@ -109,12 +111,10 @@ PlasmaCore.ColorScope {
if (taskSwitcher.visibility == Window.Hidden) {
return;
}
if (taskSwitcher.offset > -taskSwitcher.height/2) {
taskSwitcher.currentTaskIndex = -1
if (opening) {
taskSwitcher.show();
} else {
taskSwitcher.hide();
taskSwitcher.setSingleActiveWindow(taskSwitcher.currentTaskIndex);
}
}