twblue/src/wxUI/buffers/lists.py
2017-11-11 22:35:17 +00:00

10 lines
205 B
Python

# -*- coding: utf-8 -*-
import wx
from .base import basePanel
class listPanel(basePanel):
def __init__(self, parent, name):
super(listPanel, self).__init__(parent, name)
self.type = "list"