davemds pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/edgar.git/commit/?id=fce3d8716cb3d20b05a4e501b99f0ce87310ba91
commit fce3d8716cb3d20b05a4e501b99f0ce87310ba91 Author: davemds <d...@gurumeditation.it> Date: Sat Aug 30 10:09:07 2014 +0200 No more need for this workaround I forgot to remove this when fixed the popup obj del callback --- python/e.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/e.py b/python/e.py index dffb710..2e88c84 100644 --- a/python/e.py +++ b/python/e.py @@ -31,9 +31,7 @@ class Gadget(object): def popup_destroyed(self, obj): """ TODO DOC """ - ################################### - # self._popups.remove(popup) #### ARGHHHH !! popup is already deleted in py eo :( - self._popups = [] #### for now just clear the list... + self._popups.remove(obj) """ TODO DOC """ --