The vertical border changed from wxPython 4.0.7 to 4.1.1. On the former, the vertical border stopped on the last element. Now, the border is drawn all the way down to the bottom.
Is there some way to get the old look?
Example (see attached screenshots)
#!/usr/bin/env python
import wx
app = wx.App()
frame = wx.Frame(None, title='Simple application')
lw = wx.ListCtrl(frame, style=wx.LC_REPORT|wx.SUNKEN_BORDER|wx.LC_HRULES|wx.LC_VRULES)
lw.AppendColumn("A")
lw.AppendColumn("B")
lw.Append(("a1", "b1"))
lw.Append(("a2", "b2"))
frame.Show()
app.MainLoop()