discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=26146ccbe441fc74d01c70c87d608aad1f589a9b

commit 26146ccbe441fc74d01c70c87d608aad1f589a9b
Author: Mike Blumenkrantz <[email protected]>
Date:   Sat Jul 19 15:55:34 2014 -0400

    fix zone sort order
---
 src/bin/e_comp_canvas.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_comp_canvas.c b/src/bin/e_comp_canvas.c
index d04bcb9..32d1c83 100644
--- a/src/bin/e_comp_canvas.c
+++ b/src/bin/e_comp_canvas.c
@@ -105,7 +105,7 @@ _e_comp_canvas_cb_zone_sort(const void *data1, const void 
*data2)
 {
    const E_Zone *z1 = data1, *z2 = data2;
 
-   return z2->num - z1->num;
+   return z1->num - z2->num;
 }
 
 

-- 


Reply via email to