[milepost update] use autoresizeMask to resize surfaces to the parent window's client area

This commit is contained in:
Martin Fouilleul 2023-07-25 17:02:38 +02:00
parent 225b506dd4
commit 213663a09c
2 changed files with 2 additions and 7 deletions

@ -1 +1 @@
Subproject commit 3816e85592b5c68eeea4ed00001692f910a50c82
Subproject commit e7cce5e36fd522a20666e73e945a6aeca1f4ed8b

View File

@ -558,13 +558,8 @@ void* orca_runloop(void* user)
{
if(exports[G_EXPORT_MOUSE_MOVE])
{
<<<<<<< Updated upstream
const void* args[4] = {&event->move.x, &event->move.y, &event->move.deltaX, &event->move.deltaY};
m3_Call(exports[G_EXPORT_MOUSE_MOVE], 4, args);
=======
const void* args[4] = {&event->mouse.x, &event->mouse.y, &event->mouse.deltaX, &event->mouse.deltaY};
m3_Call(eventHandlers[G_EVENT_MOUSE_MOVE], 4, args);
>>>>>>> Stashed changes
m3_Call(exports[G_EXPORT_MOUSE_MOVE], 4, args);
}
} break;