Fix scrolling regression in DynamicSashWindow

This commit is contained in:
Robin Dunn
2018-01-25 16:25:34 -08:00
parent 264eb7a2e2
commit ebde977c82
3 changed files with 16 additions and 16 deletions

View File

@@ -110,9 +110,9 @@ class SimpleView(wx.Panel):
def runTest(frame, nb, log):
if True:
win = gizmos.DynamicSashWindow(nb, -1, #style=0
#| wxDS_MANAGE_SCROLLBARS
#| wxDS_DRAG_CORNER
win = gizmos.DynamicSashWindow(nb, -1, style=0
#| gizmos.DS_MANAGE_SCROLLBARS
| gizmos.DS_DRAG_CORNER
)
view = TestView(win, -1, log)