projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ce638f
)
e_comp_wl: fix the typo
08/312908/1
author
duna.oh
<duna.oh@samsung.com>
Sun, 16 Jun 2024 14:46:39 +0000
(23:46 +0900)
committer
duna.oh
<duna.oh@samsung.com>
Mon, 17 Jun 2024 07:30:32 +0000
(16:30 +0900)
refer to the following commit
:
b39e6a953dff655aa894cc816f378bfb30991f3b
Change-Id: Ib5d71d80c06b59131edf9c37823ff8c20f60feb6
src/bin/e_comp_wl_input.c
patch
|
blob
|
history
diff --git
a/src/bin/e_comp_wl_input.c
b/src/bin/e_comp_wl_input.c
index 8443cb15ba6e2866677a65a81ee8f2e14852162a..920a8e73df1a6f2057a746bcffa09adad22f54f0 100644
(file)
--- 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;