[Commits] (john) - Fixed bug #1625
commits at osafoundation.org
commits at osafoundation.org
Tue Jul 20 13:03:30 PDT 2004
Commit by: john
Modified files:
chandler/parcels/osaf/framework/blocks/Block.py 1.54 1.55
Log message:
- Fixed bug #1625
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/chandler/parcels/osaf/framework/blocks/Block.py.diff?r1=text&tr1=1.54&r2=text&tr2=1.55
Index: chandler/parcels/osaf/framework/blocks/Block.py
diff -u chandler/parcels/osaf/framework/blocks/Block.py:1.54 chandler/parcels/osaf/framework/blocks/Block.py:1.55
--- chandler/parcels/osaf/framework/blocks/Block.py:1.54 Sun Jul 18 17:01:13 2004
+++ chandler/parcels/osaf/framework/blocks/Block.py Tue Jul 20 13:03:29 2004
@@ -1,5 +1,5 @@
-__version__ = "$Revision: 1.54 $"
-__date__ = "$Date: 2004/07/19 00:01:13 $"
+__version__ = "$Revision: 1.55 $"
+__date__ = "$Date: 2004/07/20 20:03:29 $"
__copyright__ = "Copyright (c) 2003 Open Source Applications Foundation"
__license__ = "http://osafoundation.org/Chandler_0.1_license_terms.htm"
@@ -98,6 +98,9 @@
subscribedBlocks [block.itsUUID],
Globals.mainView.dispatchEvent)
+ doFreeze = isinstance (widget, wx.Window)
+ if doFreeze:
+ widget.Freeze()
for child in self.childrenBlocks:
child.render()
"""
@@ -110,6 +113,8 @@
self.synchronizeWidget()
finally:
Globals.wxApplication.ignoreSynchronizeWidget = oldIgnoreSynchronizeWidget
+ if doFreeze:
+ widget.Thaw()
def onCollectionChanged (self, notification):
"""
More information about the Commits
mailing list