mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-16 18:15:17 +00:00
Fix missing y_abs argument copy (#1813)
Signed-off-by: Tin Švagelj <tin.svagelj@live.com>
This commit is contained in:
parent
e4213024e4
commit
9565e2f7c2
@ -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,
|
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)
|
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;
|
void push_lua_data(lua_State *L) const;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user