diff options
author | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-11-01 14:33:54 -0200 |
---|---|---|
committer | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-11-01 15:07:53 -0200 |
commit | 6aa11cf89d305da10058edfade3e463cdaae9a2d (patch) | |
tree | 5b07fb58dfb4386adbd768dfeb1810f1431cad02 /src/lib/ecore_wayland | |
parent | 839a737a626d6840c37ce166cc8834b765595bc1 (diff) |
ecore/wayland: Set win->moving from inside ecore_wayland.
We can set it from the ecore_wl_window_move() function, instead of
directly changing the attribute.
Diffstat (limited to 'src/lib/ecore_wayland')
-rw-r--r-- | src/lib/ecore_wayland/ecore_wl_window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/ecore_wayland/ecore_wl_window.c b/src/lib/ecore_wayland/ecore_wl_window.c index 97508e28f1..fc71053d06 100644 --- a/src/lib/ecore_wayland/ecore_wl_window.c +++ b/src/lib/ecore_wayland/ecore_wl_window.c | |||
@@ -136,6 +136,8 @@ ecore_wl_window_move(Ecore_Wl_Window *win, int x, int y) | |||
136 | 136 | ||
137 | if (!win) return; | 137 | if (!win) return; |
138 | 138 | ||
139 | win->moving = EINA_TRUE; | ||
140 | |||
139 | ecore_wl_window_update_location(win, x, y); | 141 | ecore_wl_window_update_location(win, x, y); |
140 | 142 | ||
141 | if (win->shell_surface) | 143 | if (win->shell_surface) |