Fix missing y_abs argument copy (#1813)

Signed-off-by: Tin Švagelj <tin.svagelj@live.com>
This commit is contained in:
Tin Švagelj
2024-04-11 13:34:56 +00:00
committed by GitHub
parent e4213024e4
commit 9565e2f7c2

View File

@@ -123,7 +123,7 @@ struct mouse_positioned_event : public mouse_event {
mouse_positioned_event(mouse_event_t type, std::size_t x, std::size_t y,
std::size_t x_abs, std::size_t y_abs)
: mouse_event(type), x(x), y(y), x_abs(x_abs), y_abs(){};
: mouse_event(type), x(x), y(y), x_abs(x_abs), y_abs(y_abs){};
void push_lua_data(lua_State *L) const;
};