Fix dc.DrawRectangleRect to dc.DrawRectangle

This commit is contained in:
Metallicow
2018-11-08 04:11:55 -06:00
parent af7f52b640
commit 21f5e5092f

View File

@@ -953,7 +953,7 @@ class HyperTreeHeaderRenderer(object):
dc.SetBrush(wx.Brush(color, wx.BRUSHSTYLE_SOLID))
dc.SetBackgroundMode(wx.SOLID)
dc.SetPen(wx.TRANSPARENT_PEN)
dc.DrawRectangleRect(rect)
dc.DrawRectangle(rect)
# Draw the column divider on the right
x = rect.width + rect.x - 2