13 lines
423 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from __future__ import absolute_import
2019-06-06 11:52:23 -05:00
from __future__ import unicode_literals
import wx
from .base import basePanel
class dmPanel(basePanel):
def __init__(self, parent, name):
""" Class to DM'S. Reply and retweet buttons are not showed and they have your delete method for dm's."""
super(dmPanel, self).__init__(parent, name)
self.retweet.Disable()
self.reply.Disable()
self.type = "dm"