workaround for a refresh bug

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@8552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2000-10-14 04:45:22 +00:00
parent d1ce109158
commit 58ac0a3b73

View File

@@ -162,9 +162,25 @@ class wxPythonDemo(wxFrame):
# Create a Notebook # Create a Notebook
self.nb = wxNotebook(splitter2, -1) self.nb = wxNotebook(splitter2, -1)
# Set up a TextCtrl on the Overview Notebook page # Set up a wxHtmlWindow on the Overview Notebook page
self.ovr = wxHtmlWindow(self.nb, -1) # we put it in a panel first because there seems to be a
self.nb.AddPage(self.ovr, "Overview") # refresh bug of some sort (wxGTK) when it is directly in
# the notebook...
if 0: # the old way
self.ovr = wxHtmlWindow(self.nb, -1, size=(400, 400))
self.nb.AddPage(self.ovr, "Overview")
else: # hopefully I can remove this hacky code soon
panel = wxPanel(self.nb, -1)
self.ovr = wxHtmlWindow(panel, -1, size=(400, 400))
self.nb.AddPage(panel, "Overview")
def OnOvrSize(evt, ovr=self.ovr):
ovr.SetSize(evt.GetSize())
EVT_SIZE(panel, OnOvrSize)
self.SetOverview("Overview", overview)
# Set up a TextCtrl on the Demo Code Notebook page # Set up a TextCtrl on the Demo Code Notebook page