Fixed spacing

This commit is contained in:
Sam Lantinga 2024-02-08 10:26:42 -08:00
parent 91639d855f
commit d777becd9d
3 changed files with 21 additions and 21 deletions

View file

@ -494,9 +494,9 @@ void X11_InitPen(SDL_VideoDevice *_this)
if (axis == -1 && valuator_nr == 5) { if (axis == -1 && valuator_nr == 5) {
/* Wacom model-specific axis support */ /* Wacom model-specific axis support */
/* The meaning of the various axes is highly underspecitied in Xinput2. /* The meaning of the various axes is highly underspecitied in Xinput2.
* As of 2023-08-26, Wacom seems to be the only vendor to support these axes, so the code below * As of 2023-08-26, Wacom seems to be the only vendor to support these axes, so the code below
* captures the de-facto standard. */ * captures the de-facto standard. */
axis = valuator_5_axis; axis = valuator_5_axis;
switch (axis) { switch (axis) {

View file

@ -81,7 +81,7 @@ int X11_XfixesIsInitialized(void)
int X11_GetXFixesSelectionNotifyEvent() int X11_GetXFixesSelectionNotifyEvent()
{ {
return xfixes_selection_notify_event; return xfixes_selection_notify_event;
} }
void X11_SetWindowMouseRect(SDL_VideoDevice *_this, SDL_Window *window) void X11_SetWindowMouseRect(SDL_VideoDevice *_this, SDL_Window *window)

View file

@ -390,23 +390,23 @@ int X11_HandleXinput2Event(SDL_VideoDevice *_this, XGenericEventCookie *cookie)
/* Only report button event; if there was also pen movement / pressure changes, we expect /* Only report button event; if there was also pen movement / pressure changes, we expect
an XI_Motion event first anyway */ an XI_Motion event first anyway */
if (button == 1) { if (button == 1) {
/* button 1 is the pen tip */ /* button 1 is the pen tip */
if (pressed && SDL_PenPerformHitTest()) { if (pressed && SDL_PenPerformHitTest()) {
/* Check whether we should handle window resize / move events */ /* Check whether we should handle window resize / move events */
SDL_WindowData *windowdata = X11_FindWindow(_this, xev->event); SDL_WindowData *windowdata = X11_FindWindow(_this, xev->event);
if (windowdata && X11_TriggerHitTestAction(_this, windowdata, pen->last.x, pen->last.y)) { if (windowdata && X11_TriggerHitTestAction(_this, windowdata, pen->last.x, pen->last.y)) {
SDL_SendWindowEvent(windowdata->window, SDL_EVENT_WINDOW_HIT_TEST, 0, 0); SDL_SendWindowEvent(windowdata->window, SDL_EVENT_WINDOW_HIT_TEST, 0, 0);
return 1; /* Don't pass on this event */ return 1; /* Don't pass on this event */
} }
} }
SDL_SendPenTipEvent(0, pen->header.id, SDL_SendPenTipEvent(0, pen->header.id,
pressed ? SDL_PRESSED : SDL_RELEASED); pressed ? SDL_PRESSED : SDL_RELEASED);
} else { } else {
SDL_SendPenButton(0, pen->header.id, SDL_SendPenButton(0, pen->header.id,
pressed ? SDL_PRESSED : SDL_RELEASED, pressed ? SDL_PRESSED : SDL_RELEASED,
button - 1); button - 1);
} }
return 1; return 1;
} else { } else {
/* Otherwise assume a regular mouse */ /* Otherwise assume a regular mouse */