diff --git a/Linux/Tentia.py b/Linux/Tentia.py index 5257680..d9cd5a9 100755 --- a/Linux/Tentia.py +++ b/Linux/Tentia.py @@ -14,7 +14,7 @@ class Tentia: self.preferences.show() self.timeline = Windows.Timeline(self) - #self.mentions = Windows.Timeline(self, "mentions", "Mentions") + self.mentions = Windows.Timeline(self, "mentions", "Mentions") if self.controller.stringForKey("user_access_token") != "": self.authentification_succeded() @@ -38,7 +38,7 @@ class Tentia: def init_web_views(self): self.timeline.show() - #self.mentions.show() + self.mentions.show() class Controller(QtCore.QObject): diff --git a/Linux/Windows.py b/Linux/Windows.py index 5aa134e..f3814b7 100644 --- a/Linux/Windows.py +++ b/Linux/Windows.py @@ -13,7 +13,6 @@ class Preferences: self.window.resize(480, 186) self.window.setMinimumSize(480, 186) self.window.setMaximumSize(480, 186) - self.window.move(1400, 700) # image view image = QtGui.QPixmap(self.app.resources_path() + "/Icon.png") @@ -85,6 +84,9 @@ class Timeline: self.window.setWindowTitle(title) self.window.load_local(self.load_finished) + self.window.resize(380, 600) + self.window.setMinimumSize(200, 200) + def show(self): self.window.show()