]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/GridHugeTable.py
Mention that NO_FULL_REPAINT_ON_RESIZE is now the default
[wxWidgets.git] / wxPython / demo / GridHugeTable.py
index 87bcc3279bca795a0178b7fffdf71c522cb2498d..69c840f5fd7fd2f02096445367d09eabce411686 100644 (file)
@@ -21,7 +21,7 @@ class HugeTable(wxPyGridTableBase):
         self.even=wxGridCellAttr()
         self.even.SetBackgroundColour("sea green")
 
-     def GetAttr(self, row, col, kind):
+    def GetAttr(self, row, col, kind):
         attr = [self.even, self.odd][row % 2]
         attr.IncRef()
         return attr