added open profile to Linux

This commit is contained in:
jeena 2013-02-26 02:09:21 +01:00
parent 3238b06c27
commit 43124c4c97
2 changed files with 35 additions and 0 deletions

View file

@ -45,6 +45,7 @@ class Bungloo:
self.timeline.show()
self.conversation = Windows.Timeline(self, "conversation", "Conversation")
self.profile = Windows.Timeline(self, "profile", "Profile")
self.find_entity = Windows.FindEntity(self)
def timeline_show(self):
self.timeline.show()
@ -53,6 +54,9 @@ class Bungloo:
self.controller.unreadMentions(0)
self.mentions.show()
def find_entity_show(self):
self.find_entity.show()
class Controller(QtCore.QObject):