Compare commits
1 commit
master
...
work/send-
Author | SHA1 | Date | |
---|---|---|---|
|
c03bcff4f8 |
3 changed files with 1 additions and 2 deletions
|
@ -66,6 +66,7 @@ void MousepadPlugin::connected()
|
||||||
if (m_impl) {
|
if (m_impl) {
|
||||||
np.set<bool>(QStringLiteral("state"), m_impl->hasKeyboardSupport());
|
np.set<bool>(QStringLiteral("state"), m_impl->hasKeyboardSupport());
|
||||||
}
|
}
|
||||||
|
np.set<bool>(QStringLiteral("singlerelease_support"), true);
|
||||||
sendPacket(np);
|
sendPacket(np);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -240,7 +240,6 @@ bool WaylandRemoteInput::handlePacket(const NetworkPacket &np)
|
||||||
// For drag'n drop
|
// For drag'n drop
|
||||||
s_session->iface->NotifyPointerButton(s_session->m_xdpPath, {}, BTN_LEFT, 1);
|
s_session->iface->NotifyPointerButton(s_session->m_xdpPath, {}, BTN_LEFT, 1);
|
||||||
} else if (isSingleRelease) {
|
} else if (isSingleRelease) {
|
||||||
// For drag'n drop. NEVER USED (release is done by tapping, which actually triggers a isSingleClick). Kept here for future-proofness.
|
|
||||||
s_session->iface->NotifyPointerButton(s_session->m_xdpPath, {}, BTN_LEFT, 0);
|
s_session->iface->NotifyPointerButton(s_session->m_xdpPath, {}, BTN_LEFT, 0);
|
||||||
} else if (isScroll) {
|
} else if (isScroll) {
|
||||||
s_session->iface->NotifyPointerAxis(s_session->m_xdpPath, {}, dx, dy);
|
s_session->iface->NotifyPointerAxis(s_session->m_xdpPath, {}, dx, dy);
|
||||||
|
|
|
@ -131,7 +131,6 @@ bool X11RemoteInput::handlePacket(const NetworkPacket &np)
|
||||||
// For drag'n drop
|
// For drag'n drop
|
||||||
XTestFakeButtonEvent(display, mainMouseButton, True, 0);
|
XTestFakeButtonEvent(display, mainMouseButton, True, 0);
|
||||||
} else if (isSingleRelease) {
|
} else if (isSingleRelease) {
|
||||||
// For drag'n drop. NEVER USED (release is done by tapping, which actually triggers a isSingleClick). Kept here for future-proofness.
|
|
||||||
XTestFakeButtonEvent(display, mainMouseButton, False, 0);
|
XTestFakeButtonEvent(display, mainMouseButton, False, 0);
|
||||||
} else if (isScroll) {
|
} else if (isScroll) {
|
||||||
if (dy < 0) {
|
if (dy < 0) {
|
||||||
|
|
Loading…
Reference in a new issue