mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-23 03:38:08 -06:00
14 lines
457 B
Python
14 lines
457 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import
|
|
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"
|