Skip to content

Commit bdb30a2

Browse files
committed
Fixed incorrect page size on Linux
1 parent 7e30bc1 commit bdb30a2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

infinitrix.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,8 @@ def on_tray_activated(reason):
408408
#show tray icon
409409
self.tray_icon.show()
410410
#show MainWindow, resize to 401x501 (bug in QT5 with resizing)
411-
self.resize(411, 501)
411+
#now commented, incorrect size in Linux
412+
#self.resize(411, 501)
412413
self.showMaximized()
413414
self.web.page().loadFinished.connect(self.run_js_start)
414415

0 commit comments

Comments
 (0)