1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 07:00:45 +00:00

Dispatch MouseUp events with SDL.

This commit is contained in:
Andreas Kling 2018-10-11 02:55:02 +02:00
parent c61cbf4234
commit 0abc19b0ff

View File

@ -46,6 +46,9 @@ void EventLoopSDL::waitForEvent()
case SDL_MOUSEBUTTONDOWN:
postEvent(&AbstractScreen::the(), make<MouseEvent>(Event::MouseDown, sdlEvent.button.x, sdlEvent.button.y, toMouseButton(sdlEvent.button.button)));
return;
case SDL_MOUSEBUTTONUP:
postEvent(&AbstractScreen::the(), make<MouseEvent>(Event::MouseUp, sdlEvent.button.x, sdlEvent.button.y, toMouseButton(sdlEvent.button.button)));
return;
}
}
}