Fix for too big default window size
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26185 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -181,7 +181,7 @@ class ControlPanel(wx.Panel):
|
|||||||
BMP_BORDER = 3
|
BMP_BORDER = 3
|
||||||
|
|
||||||
def __init__(self, parent, ID, doodle):
|
def __init__(self, parent, ID, doodle):
|
||||||
wx.Panel.__init__(self, parent, ID, style=wx.RAISED_BORDER)
|
wx.Panel.__init__(self, parent, ID, style=wx.RAISED_BORDER, size=(20,20))
|
||||||
|
|
||||||
numCols = 4
|
numCols = 4
|
||||||
spacing = 4
|
spacing = 4
|
||||||
@@ -295,7 +295,7 @@ class ColourIndicator(wx.Window):
|
|||||||
def __init__(self, parent):
|
def __init__(self, parent):
|
||||||
wx.Window.__init__(self, parent, -1, style=wx.SUNKEN_BORDER)
|
wx.Window.__init__(self, parent, -1, style=wx.SUNKEN_BORDER)
|
||||||
self.SetBackgroundColour(wx.WHITE)
|
self.SetBackgroundColour(wx.WHITE)
|
||||||
self.SetSize( (-1, 45) )
|
self.SetSize( (45, 45) )
|
||||||
self.colour = self.thickness = None
|
self.colour = self.thickness = None
|
||||||
self.Bind(wx.EVT_PAINT, self.OnPaint)
|
self.Bind(wx.EVT_PAINT, self.OnPaint)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user