mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-17 08:27:39 +02:00
- using cocoa code to fake mouse button down instead of using synergy code.
- fake a ctrl key up and esc key down and up before leave the screen if there is a dragging operation.
This commit is contained in:
parent
dbc7659776
commit
e9f43fa7c5
2 changed files with 8 additions and 1 deletions
|
@ -744,7 +744,6 @@ COSXScreen::showCursor()
|
|||
#if defined(MAC_OS_X_VERSION_10_7)
|
||||
// TODO: use real file extension
|
||||
fakeDragging("txt", 3, m_xCursor, m_yCursor);
|
||||
fakeMouseButton(kButtonLeft, true);
|
||||
#else
|
||||
LOG((CLOG_WARN "drag drop not supported"));
|
||||
#endif
|
||||
|
@ -911,6 +910,11 @@ COSXScreen::leave()
|
|||
|
||||
if (m_draggingStarted) {
|
||||
if (!m_isPrimary) {
|
||||
// fake ctrl key up
|
||||
fakeKeyUp(29);
|
||||
// fake esc key down and up
|
||||
fakeKeyDown(kKeyEscape, 8192, 1);
|
||||
fakeKeyUp(1);
|
||||
CFStringRef dragInfo = getDraggedFileURL();
|
||||
char* dragInfoCStr = CFStringRefToUTF8String(dragInfo);
|
||||
LOG((CLOG_DEBUG "drag info: %s", dragInfoCStr));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue