This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch x11-keeb-repeat-delay
in repository enlightenment.
View the commit online.
commit 714e68800dc0980ef28f2273a018448298698b50
Author: Swagtoy <m...@ow.swag.toys>
AuthorDate: Fri Jun 27 13:27:49 2025 -0400
E_Xkb: Polarity with EFL
---
src/bin/e_xkb.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/src/bin/e_xkb.c b/src/bin/e_xkb.c
index 7addbf82f..e38117dc1 100644
--- a/src/bin/e_xkb.c
+++ b/src/bin/e_xkb.c
@@ -530,14 +530,11 @@ E_API void
e_xkb_repeat_set(int delay, int rate)
{
#ifndef HAVE_WAYLAND_ONLY
- Ecore_X_Display *display = ecore_x_display_get();
- if (!display)
- return;
Ecore_X_Keyboard_Repeat repeat = {
.delay = delay,
.rate = rate,
};
- ecore_x_keyboard_repeat_set(display, &repeat);
+ ecore_x_keyboard_repeat_set(&repeat);
#endif
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.