daboide Commit
Revision 577
Date: 2006-05-17 09:39:48 -0700 (Wed, 17 May 2006)
Author: ed

Changed:
U   trunk/ClassDesignerPropSheet.py

Log:
Fixed the invalid column index problem noted in Tracker #0146


Diff:
Modified: trunk/ClassDesignerPropSheet.py
===================================================================
--- trunk/ClassDesignerPropSheet.py     2006-05-16 12:04:21 UTC (rev 576)
+++ trunk/ClassDesignerPropSheet.py     2006-05-17 16:39:48 UTC (rev 577)
@@ -399,13 +399,13 @@
                col = dabo.ui.dColumn(self, Order=10, DataField="prop",
                                DataType="string", Width=100, 
Caption=_("Property"), Sortable=True,
                                Searchable=True, Editable=False)
-               self.addColumn(col)
+               self.addColumn(col, inBatch=True)
 
                # Now create the property Value column
                col = dabo.ui.dColumn(self, Order=20, DataField="val",
                                DataType="string", Width=200, 
Caption=_("Value"), Sortable=False,
                                Searchable=False, Editable=True)
-               self.addColumn(col)
+               self.addColumn(col, inBatch=True)
                self.autoBindEvents()
 
                # Reference to default classes. Don't know if this is the best 
solution...




_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev

Reply via email to