This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 004b07841f11a7c27a46c524e65db64aea8ac3e2
Author: Carsten Haitzler <[email protected]>
AuthorDate: Mon Jun 8 18:24:15 2026 +0100
winlist - allow use without mouse grab
---
src/modules/winlist/e_winlist.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/modules/winlist/e_winlist.c b/src/modules/winlist/e_winlist.c
index b2d5a4a71..e40a2ff39 100644
--- a/src/modules/winlist/e_winlist.c
+++ b/src/modules/winlist/e_winlist.c
@@ -129,8 +129,8 @@ e_winlist_show(E_Zone *zone, E_Winlist_Filter filter)
Ecore_X_Window mouse_grab = 0;
_input_window = ecore_x_window_input_new(e_comp->root, 0, 0, 1, 1);
ecore_x_window_show(_input_window);
- mouse_grab = _input_window;
-// if (_activate_type == E_WINLIST_ACTIVATE_TYPE_MOUSE) mouse_grab = _input_window;
+// mouse_grab = _input_window;
+ if (_activate_type == E_WINLIST_ACTIVATE_TYPE_MOUSE) mouse_grab = _input_window;
if (!e_grabinput_get(mouse_grab, 0, _input_window))
{
ecore_x_window_free(_input_window);
@@ -143,8 +143,8 @@ e_winlist_show(E_Zone *zone, E_Winlist_Filter filter)
if (e_comp->comp_type != E_PIXMAP_TYPE_X)
{
Eina_Bool mouse_grab = EINA_FALSE;
- mouse_grab = EINA_TRUE;
-// if (_activate_type == E_WINLIST_ACTIVATE_TYPE_MOUSE) mouse_grab = EINA_TRUE;
+// mouse_grab = EINA_TRUE;
+ if (_activate_type == E_WINLIST_ACTIVATE_TYPE_MOUSE) mouse_grab = EINA_TRUE;
if (!e_comp_grab_input(mouse_grab, EINA_TRUE)) return 0;
_input_window = e_comp->ee_win;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.