mirror of
https://github.com/debauchee/barrier.git
synced 2025-07-18 00:47:43 +02:00
fixed drag drop from Mac server to Windows client
This commit is contained in:
parent
39734374b1
commit
4e09b06cb0
12 changed files with 101 additions and 28 deletions
|
@ -45,6 +45,10 @@
|
|||
#include <ApplicationServices/ApplicationServices.h>
|
||||
#endif
|
||||
|
||||
#if defined(__APPLE__)
|
||||
#include "COSXDragSimulator.h"
|
||||
#endif
|
||||
|
||||
CApp* CApp::s_instance = nullptr;
|
||||
|
||||
CApp::CApp(IEventQueue* events, CreateTaskBarReceiverFunc createTaskBarReceiver, CArgsBase* args) :
|
||||
|
@ -393,4 +397,10 @@ CApp::runEventsLoop(void*)
|
|||
{
|
||||
m_events->cacheCurrentEventQueueRef();
|
||||
m_events->loop();
|
||||
|
||||
#if defined(MAC_OS_X_VERSION_10_7)
|
||||
|
||||
stopCocoaLoop();
|
||||
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue