Revert "Make overview and present windows use realtime gestures"
This reverts commit 6729380c54
.
It didn't go through code review process.
This commit is contained in:
parent
6729380c54
commit
7e14716043
2 changed files with 2 additions and 17 deletions
|
@ -39,14 +39,7 @@ OverviewEffect::OverviewEffect()
|
|||
KGlobalAccel::self()->setShortcut(m_toggleAction, {defaultToggleShortcut});
|
||||
m_toggleShortcut = KGlobalAccel::self()->shortcut(m_toggleAction);
|
||||
effects->registerGlobalShortcut({defaultToggleShortcut}, m_toggleAction);
|
||||
effects->registerRealtimeTouchpadSwipeShortcut(SwipeDirection::Up, 4, new QAction(), [this](qreal cb) { //m_toggleAction
|
||||
if (cb > .2 && !isRunning()) {
|
||||
activate();
|
||||
}
|
||||
if (cb <= .2 && isRunning()) {
|
||||
deactivate();
|
||||
}
|
||||
});
|
||||
effects->registerTouchpadSwipeShortcut(SwipeDirection::Up, 4, m_toggleAction);
|
||||
|
||||
connect(effects, &EffectsHandler::screenAboutToLock, this, &OverviewEffect::realDeactivate);
|
||||
|
||||
|
|
|
@ -82,15 +82,7 @@ PresentWindowsEffect::PresentWindowsEffect()
|
|||
KGlobalAccel::self()->setShortcut(exposeAllAction, QList<QKeySequence>() << (Qt::CTRL | Qt::Key_F10) << Qt::Key_LaunchC);
|
||||
shortcutAll = KGlobalAccel::self()->shortcut(exposeAllAction);
|
||||
effects->registerGlobalShortcut(Qt::CTRL + Qt::Key_F10, exposeAllAction);
|
||||
effects->registerRealtimeTouchpadSwipeShortcut(SwipeDirection::Down, 4, new QAction(), [this](qreal cb) { //exposeAllAction
|
||||
m_mode = ModeAllDesktops;
|
||||
if (cb > .2 && !m_activated) {
|
||||
setActive(true);
|
||||
}
|
||||
if (cb < .2 && m_activated) {
|
||||
setActive(false);
|
||||
}
|
||||
});
|
||||
effects->registerTouchpadSwipeShortcut(SwipeDirection::Down, 4, exposeAllAction);
|
||||
connect(exposeAllAction, &QAction::triggered, this, &PresentWindowsEffect::toggleActiveAllDesktops);
|
||||
|
||||
QAction* exposeClassAction = m_exposeClassAction;
|
||||
|
|
Loading…
Reference in a new issue