From 4a7ea057cd6bf54d645134615f4c9d247767cef0 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 13 Jan 2004 03:32:06 +0000 Subject: [PATCH] Forgot to output the first string git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25144 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_app_ex.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wxPython/src/_app_ex.py b/wxPython/src/_app_ex.py index b843af6191..8efa406e2c 100644 --- a/wxPython/src/_app_ex.py +++ b/wxPython/src/_app_ex.py @@ -23,6 +23,7 @@ class PyOnDemandOutputWindow: style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE) self.text = wx.TextCtrl(self.frame, -1, "", style = wx.TE_MULTILINE | wx.TE_READONLY) + self.text.AppendText(st) self.frame.SetSize((450, 300)) self.frame.Show(True) EVT_CLOSE(self.frame, self.OnCloseWindow) -- 2.47.2