Fix slight sizing issue with toggle panel header arrow
This commit is contained in:
@@ -37,7 +37,7 @@ class TogglePanel (wx.Panel):
|
|||||||
|
|
||||||
# Add arrow
|
# Add arrow
|
||||||
self.header_arrow = wx.StaticText(self.header_panel, wx.ID_ANY,
|
self.header_arrow = wx.StaticText(self.header_panel, wx.ID_ANY,
|
||||||
"\u25bc")
|
"\u25bc", size=wx.Size((10, -1)))
|
||||||
header_sizer.Add(self.header_arrow, 0, wx.RIGHT, 5)
|
header_sizer.Add(self.header_arrow, 0, wx.RIGHT, 5)
|
||||||
|
|
||||||
# Add header text
|
# Add header text
|
||||||
@@ -143,7 +143,10 @@ class TogglePanel (wx.Panel):
|
|||||||
self.OnStateChange(self.GetBestSize())
|
self.OnStateChange(self.GetBestSize())
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
class TestPanel(wx.Panel):
|
|
||||||
|
from wx.lib.inspection import InspectionTool
|
||||||
|
|
||||||
|
class MainPanel(wx.Panel):
|
||||||
def __init__(self, parent):
|
def __init__(self, parent):
|
||||||
super().__init__(parent, size=(-1, -1))
|
super().__init__(parent, size=(-1, -1))
|
||||||
|
|
||||||
@@ -176,11 +179,21 @@ if __name__ == "__main__":
|
|||||||
super().__init__(None, title=title, size=(500, 500))
|
super().__init__(None, title=title, size=(500, 500))
|
||||||
main_sizer = wx.BoxSizer(wx.VERTICAL)
|
main_sizer = wx.BoxSizer(wx.VERTICAL)
|
||||||
|
|
||||||
self.statsPane = TestPanel(self)
|
self.statsPane = MainPanel(self)
|
||||||
main_sizer.Add(self.statsPane, 0, wx.EXPAND)
|
main_sizer.Add(self.statsPane, 0, wx.EXPAND)
|
||||||
|
|
||||||
self.SetSizerAndFit(main_sizer)
|
self.SetSizerAndFit(main_sizer)
|
||||||
|
|
||||||
|
if not InspectionTool().initialized:
|
||||||
|
InspectionTool().Init()
|
||||||
|
|
||||||
|
# Find a widget to be selected in the tree. Use either the
|
||||||
|
# one under the cursor, if any, or this frame.
|
||||||
|
wnd, _ = wx.FindWindowAtPointer()
|
||||||
|
if not wnd:
|
||||||
|
wnd = self
|
||||||
|
InspectionTool().Show(wnd, True)
|
||||||
|
|
||||||
app = wx.App(redirect=False) # Error messages go to popup window
|
app = wx.App(redirect=False) # Error messages go to popup window
|
||||||
top = Frame("Test Toggle Panel")
|
top = Frame("Test Toggle Panel")
|
||||||
top.Show()
|
top.Show()
|
||||||
|
|||||||
Reference in New Issue
Block a user