Reviewers: ,
Please review this at http://codereview.tryton.org/593003/
Affected files:
M tryton/gui/window/view_board/action.py
Index: tryton/gui/window/view_board/action.py
===================================================================
--- a/tryton/gui/window/view_board/action.py
+++ b/tryton/gui/window/view_board/action.py
@@ -129,4 +129,6 @@
del self.domain[:]
self.domain.extend(new_domain)
if hasattr(self, 'screen'): # Catch early update
- self.display()
+ # Using idle_add to prevent corruption of the event who
triggered
+ # the update.
+ gtk.idle_add(self.display)
--
[email protected] mailing list