projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
IsExposed() needs to reverse the direction in RTL.
[wxWidgets.git]
/
wxPython
/
demo
/
Process.py
diff --git
a/wxPython/demo/Process.py
b/wxPython/demo/Process.py
index af9e4cd9f406ef5e4f9fd730070d2f0d4e83b145..ad6827cc3163d4c1bf62d5143a576b184dffc7b3 100644
(file)
--- a/
wxPython/demo/Process.py
+++ b/
wxPython/demo/Process.py
@@
-22,7
+22,8
@@
class TestPanel(wx.Panel):
self.cmd = wx.TextCtrl(self, -1, 'python -u data/echo.py')
self.exBtn = wx.Button(self, -1, 'Execute')
self.cmd = wx.TextCtrl(self, -1, 'python -u data/echo.py')
self.exBtn = wx.Button(self, -1, 'Execute')
- self.out = wx.TextCtrl(self, -1, '', style=wx.TE_MULTILINE|wx.TE_READONLY)
+ self.out = wx.TextCtrl(self, -1, '',
+ style=wx.TE_MULTILINE|wx.TE_READONLY|wx.TE_RICH2)
self.inp = wx.TextCtrl(self, -1, '', style=wx.TE_PROCESS_ENTER)
self.sndBtn = wx.Button(self, -1, 'Send')
self.inp = wx.TextCtrl(self, -1, '', style=wx.TE_PROCESS_ENTER)
self.sndBtn = wx.Button(self, -1, 'Send')
@@
-158,4
+159,4
@@
child process to exit its main loop.
if __name__ == '__main__':
import sys,os
import run
if __name__ == '__main__':
import sys,os
import run
- run.main(['', os.path.basename(sys.argv[0])])
+ run.main(['', os.path.basename(sys.argv[0])]
+ sys.argv[1:]
)