mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-16 14:20:39 +01:00
XQuartz: Tiger fix, don't call Xplugin code in the Appkit thread if Xplugin isn't threadsafe.
(cherry picked from commit748d9e5bd7) (cherry picked from commitfd31984e0c)
This commit is contained in:
parent
d9e1fdcd40
commit
d0eb4337e3
1 changed files with 5 additions and 0 deletions
|
|
@ -1008,6 +1008,9 @@ extern int darwin_modifier_flags; // darwinEvents.c
|
|||
pDev = darwinTabletCurrent;
|
||||
}
|
||||
|
||||
/* Older libXplugin (Tiger/"Stock" Leopard) aren't thread safe, so we can't call xp_find_window from the Appkit thread */
|
||||
#ifdef XPLUGIN_VERSION
|
||||
#if XPLUGIN_VERSION > 0
|
||||
if(!quartzServerVisible) {
|
||||
xp_window_id wid;
|
||||
|
||||
|
|
@ -1023,6 +1026,8 @@ extern int darwin_modifier_flags; // darwinEvents.c
|
|||
wid == 0)
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
DarwinSendPointerEvents(pDev, ev_type, ev_button, pointer_x, pointer_y,
|
||||
pressure, tilt_x, tilt_y);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue