added mentions view
This commit is contained in:
parent
7ffb809ce3
commit
4f2331d282
2 changed files with 5 additions and 3 deletions
|
@ -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()
|
||||
|
||||
|
|
Reference in a new issue