From: duna.oh Date: Sun, 16 Jun 2024 14:46:39 +0000 (+0900) Subject: e_comp_wl: fix the typo X-Git-Tag: accepted/tizen/8.0/unified/20240705.163555~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F08%2F312908%2F1;p=platform%2Fupstream%2Fenlightenment.git e_comp_wl: fix the typo refer to the following commit :b39e6a953dff655aa894cc816f378bfb30991f3b Change-Id: Ib5d71d80c06b59131edf9c37823ff8c20f60feb6 --- diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c index 8443cb15ba..920a8e73df 100644 --- a/src/bin/e_comp_wl_input.c +++ b/src/bin/e_comp_wl_input.c @@ -765,7 +765,7 @@ _e_comp_wl_input_pointer_constraints_check_enable(E_Comp_Wl_Pointer_Constraint * int trans_x, trans_y; e_client_transform_core_input_transform(ec, px, py, &trans_x, &trans_y); INF("Constraint check. ptr(%d, %d) trans(%d, %d) ec(%p)", px, py, trans_x, trans_y, ec); - px = E_CLAMP(trans_x, ec->client.y, ec->client.x + ec->client.w - 1); + px = E_CLAMP(trans_x, ec->client.x, ec->client.x + ec->client.w - 1); py = E_CLAMP(trans_y, ec->client.y, ec->client.y + ec->client.h - 1); } cx = px - ec->client.x;