From d81d4bd9ffede45da92be586f1cd3c10a714cbfb Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 25 Oct 2019 21:24:24 -0700 Subject: [PATCH] wxGrid now derives from wxScrolledCanvas --- etg/grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etg/grid.py b/etg/grid.py index 770aba03..66298871 100644 --- a/etg/grid.py +++ b/etg/grid.py @@ -424,7 +424,7 @@ def run(): #----------------------------------------------------------------- c = module.find('wxGrid') tools.fixWindowClass(c, ignoreProtected=False) - c.bases = ['wxScrolledWindow'] + c.bases = ['wxScrolledCanvas'] c.find('GetColLabelAlignment.horiz').out = True c.find('GetColLabelAlignment.vert').out = True