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
174 B
5 lines
174 B
import wx
|
|
|
|
class BasicTextConsole(wx.TextCtrl):
|
|
def __init__(self, parent):
|
|
super().__init__(parent, -1, "", style=wx.TE_MULTILINE | wx.TE_READONLY | wx.TE_RICH)
|