yakov pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=0eadc3f32c1d1010c0352ef53f37004d2f963e3e

commit 0eadc3f32c1d1010c0352ef53f37004d2f963e3e
Author: Yakov Goldberg <[email protected]>
Date:   Thu Dec 10 11:50:41 2015 +0200

    Fixing selected widget's border
    
    + remove printf introduced in prev commit
---
 src/bin/gui/editor.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/bin/gui/editor.c b/src/bin/gui/editor.c
index 6c18563..91f728a 100644
--- a/src/bin/gui/editor.c
+++ b/src/bin/gui/editor.c
@@ -4438,11 +4438,14 @@ Eina_Bool
 _wdg_border_draw_on_idle(void *data EINA_UNUSED)
 {
    const Gui_Widget *wdg = _editor_wdg_selected_get();
-   ERR("%p", wdg);
    if (wdg)
      {
         _wdg_border_draw(wdg, EINA_TRUE, BORDER_SELECTION);
      }
+   else
+     {
+        _wdg_border_draw(NULL, EINA_FALSE, BORDER_SELECTION);
+     }
    return ECORE_CALLBACK_RENEW;
 }
 

-- 


Reply via email to