[Commits] (john) - Fix bug #1620
commits at osafoundation.org
commits at osafoundation.org
Tue Aug 3 17:40:37 PDT 2004
Commit by: john
Modified files:
chandler/parcels/osaf/framework/blocks/ContainerBlocks.py 1.122 1.123
chandler/parcels/osaf/framework/blocks/calendar/CalendarBlocks.py 1.26 1.27
Log message:
- Fix bug #1620
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/chandler/parcels/osaf/framework/blocks/ContainerBlocks.py.diff?r1=text&tr1=1.122&r2=text&tr2=1.123
http://cvs.osafoundation.org/index.cgi/chandler/parcels/osaf/framework/blocks/calendar/CalendarBlocks.py.diff?r1=text&tr1=1.26&r2=text&tr2=1.27
Index: chandler/parcels/osaf/framework/blocks/ContainerBlocks.py
diff -u chandler/parcels/osaf/framework/blocks/ContainerBlocks.py:1.122 chandler/parcels/osaf/framework/blocks/ContainerBlocks.py:1.123
--- chandler/parcels/osaf/framework/blocks/ContainerBlocks.py:1.122 Mon Aug 2 23:55:30 2004
+++ chandler/parcels/osaf/framework/blocks/ContainerBlocks.py Tue Aug 3 17:40:35 2004
@@ -1,5 +1,5 @@
-__version__ = "$Revision: 1.122 $"
-__date__ = "$Date: 2004/08/03 06:55:30 $"
+__version__ = "$Revision: 1.123 $"
+__date__ = "$Date: 2004/08/04 00:40:35 $"
__copyright__ = "Copyright (c) 2003 Open Source Applications Foundation"
__license__ = "http://osafoundation.org/Chandler_0.1_license_terms.htm"
@@ -184,6 +184,8 @@
newSize = self.GetSize()
self.blockItem.size.width = newSize.width
self.blockItem.size.height = newSize.height
+ self.blockItem.setDirty() # Temporary repository hack -- DJA
+
if self.blockItem.orientationEnum == "Horizontal":
distance = self.blockItem.size.height
else:
Index: chandler/parcels/osaf/framework/blocks/calendar/CalendarBlocks.py
diff -u chandler/parcels/osaf/framework/blocks/calendar/CalendarBlocks.py:1.26 chandler/parcels/osaf/framework/blocks/calendar/CalendarBlocks.py:1.27
--- chandler/parcels/osaf/framework/blocks/calendar/CalendarBlocks.py:1.26 Mon Jul 12 17:14:41 2004
+++ chandler/parcels/osaf/framework/blocks/calendar/CalendarBlocks.py Tue Aug 3 17:40:35 2004
@@ -1,8 +1,8 @@
""" Calendar Blocks
"""
-__version__ = "$Revision: 1.26 $"
-__date__ = "$Date: 2004/07/13 00:14:41 $"
+__version__ = "$Revision: 1.27 $"
+__date__ = "$Date: 2004/08/04 00:40:35 $"
__copyright__ = "Copyright (c) 2003 Open Source Applications Foundation"
__license__ = "http://osafoundation.org/Chandler_0.1_license_terms.htm"
@@ -234,6 +234,7 @@
newSize = self.GetSize()
self.blockItem.size.width = newSize.width
self.blockItem.size.height = newSize.height
+ self.blockItem.setDirty() # Temporary repository hack -- DJA
self.SetVirtualSize(newSize)
self.displayItems()
self._positionNavigationButtons()
More information about the Commits
mailing list