kuuko pushed a commit to branch master. http://git.enlightenment.org/apps/epour.git/commit/?id=f285844df7e32bf59eb6d8fd7f098322755eb3a6
commit f285844df7e32bf59eb6d8fd7f098322755eb3a6 Author: Kai Huuhko <[email protected]> Date: Fri Oct 17 16:55:36 2014 +0300 gui.menu: Fix the torrent menu remaining open when props is selected --- epour/gui/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/epour/gui/__init__.py b/epour/gui/__init__.py index 1ce4b49..da17161 100644 --- a/epour/gui/__init__.py +++ b/epour/gui/__init__.py @@ -604,6 +604,7 @@ class ItemMenu(Menu): h.pause(flags=lt.pause_flags_t.graceful_pause) def torrent_props_cb(self, menu, item, h): + menu.close() from .TorrentProps import TorrentProps TorrentProps(h).show() --
