git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@137 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-03 09:17:22 +00:00
parent 23d6e8787e
commit f8e58bb9a9
2 changed files with 42 additions and 14 deletions

View File

@@ -13,10 +13,13 @@ static void lldrawhandler(MwLL handle, void* data) {
static void lluphandler(MwLL handle, void* data) {
MwWidget h = (MwWidget)handle->user;
MwPoint* p = data;
(void)data;
h->pressed = 0;
h->pressed = 0;
h->mouse_point.x = p->x;
h->mouse_point.y = p->y;
MwDispatch(h, click);
}