hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=73ceae42b507fa44712e4c1f2dd6529ec8abd3c4

commit 73ceae42b507fa44712e4c1f2dd6529ec8abd3c4
Author: Hermet Park <[email protected]>
Date:   Wed Jun 1 23:30:06 2016 +0900

    live_edit: don't highlight lines when ctrl key is pressed.
    
    When user press the ctrl key, then part magnetic effect is always enabled.
    it was introduced from missing return function value...
    
    @fix T3741
---
 src/bin/live_edit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/live_edit.c b/src/bin/live_edit.c
index 29d9503..9667eec 100644
--- a/src/bin/live_edit.c
+++ b/src/bin/live_edit.c
@@ -1693,7 +1693,7 @@ calc_layout_auto_align_pos(Evas_Object *layout, live_data 
*ld, int x, int y,
      {
         *ret_x = x;
         *ret_y = y;
-        return;
+        return 0;
      }
 
    Eina_Bool is_up, is_down, is_left, is_right;

-- 


Reply via email to