mirror of https://github.com/chriskiehl/Gooey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
214 B
5 lines
214 B
import wx
|
|
|
|
class BasicTextConsole(wx.TextCtrl):
|
|
def __init__(self, parent):
|
|
super(BasicTextConsole, self).__init__(parent, -1, "", style=wx.TE_MULTILINE | wx.TE_READONLY | wx.TE_RICH | wx.TE_AUTO_URL )
|