added open profile to Linux
This commit is contained in:
parent
3238b06c27
commit
43124c4c97
2 changed files with 35 additions and 0 deletions
|
@ -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):
|
||||
|
||||
|
|
Reference in a new issue