devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=9f1eb3e021d3050367dcb096d2091d91061e33eb

commit 9f1eb3e021d3050367dcb096d2091d91061e33eb
Author: Chris Michael <cpmich...@osg.samsung.com>
Date:   Thu Dec 3 14:55:42 2015 -0500

    ecore-evas-wayland: Use proper Ecore_Wl2 window functions
    
    To get the proper maximized and fullscreen states, we should be using
    the ecore_wl2_window functions, not the ecore_wl_window functions
    
    @fix
    
    Signed-off-by: Chris Michael <cpmich...@osg.samsung.com>
---
 src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c 
b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
index 1659988..a7500f2 100644
--- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
+++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c
@@ -183,8 +183,8 @@ _ecore_evas_wl_common_cb_window_configure(void *data 
EINA_UNUSED, int type EINA_
 
    prev_max = ee->prop.maximized;
    prev_full = ee->prop.fullscreen;
-   ee->prop.maximized = ecore_wl_window_maximized_get(wdata->win);
-   ee->prop.fullscreen = ecore_wl_window_fullscreen_get(wdata->win);
+   ee->prop.maximized = ecore_wl2_window_maximized_get(wdata->win);
+   ee->prop.fullscreen = ecore_wl2_window_fullscreen_get(wdata->win);
 
    nw = ev->w;
    nh = ev->h;

-- 


Reply via email to