|
From: Chris M. - E. G. <no-...@en...> - 2013-09-12 14:04:11
|
devilhorns pushed a commit to branch master.
commit 599d98e3f3618c8ef031f7a5b4748c48d9926e6d
Author: Chris Michael <cp....@sa...>
Date: Thu Sep 12 14:58:44 2013 +0100
Fix zmike issue w/ surface losing focus when we move/resize.
Signed-off-by: Chris Michael <cp....@sa...>
---
src/bin/e_comp_wl.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c
index 328b825..719d125 100644
--- a/src/bin/e_comp_wl.c
+++ b/src/bin/e_comp_wl.c
@@ -592,9 +592,7 @@ wl_pointer_set_focus(struct wl_pointer *pointer, struct wl_resource *surface, wl
}
resource = _find_resource_for_surface(&pointer->resource_list, surface);
- if (resource &&
- (pointer->focus != surface ||
- pointer->focus_resource != resource))
+ if (resource)
{
struct wl_display *disp;
@@ -2249,7 +2247,6 @@ _e_comp_wl_pointer_configure(E_Wayland_Surface *ews, Evas_Coord x, Evas_Coord y,
if (!input->wl.seat.pointer->focus) return;
if ((focus = wl_resource_get_user_data(input->wl.seat.pointer->focus)))
-// if ((focus = (E_Wayland_Surface *)input->wl.seat.pointer->focus))
{
/* NB: Ideally, I wanted to use the e_pointer methods here so that
* the cursor would match the E theme, however Wayland currently
--
|