1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-06-02 07:20:47 +00:00

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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
};