mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-01-19 08:41:06 -06:00
18 lines
441 B
Python
18 lines
441 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from gi.repository import Gtk
|
||
|
import widgetUtils
|
||
|
from base import basePanel
|
||
|
|
||
|
class peoplePanel(basePanel):
|
||
|
""" Buffer used to show people."""
|
||
|
|
||
|
def create_list(self):
|
||
|
self.list = widgetUtils.list(_(u"User"))
|
||
|
|
||
|
def __init__(self, parent, name):
|
||
|
super(peoplePanel, self).__init__(parent, name)
|
||
|
self.type = "people"
|
||
|
self.reply.set_label(_(u"Mention"))
|
||
|
self.retweet.hide()
|
||
|
self.retweet.set_no_show_all(True)
|