Drop old null window size

windows_fixes_yo
Tyler Goodlet 2022-02-10 14:35:28 -05:00
parent 86b1316691
commit 68e1db27f8
1 changed files with 1 additions and 3 deletions

View File

@ -154,7 +154,6 @@ class MainWindow(QtGui.QMainWindow):
# with the alloted window size.
# TODO: detect for tiling and if untrue set some size?
size = (300, 500)
#size = (0, 0)
title = 'piker chart (ur symbol is loading bby)'
@ -166,7 +165,7 @@ class MainWindow(QtGui.QMainWindow):
self._status_bar: QStatusBar = None
self._status_label: QLabel = None
self._size: Optional[tuple[int, int]] = None
@property
def mode_label(self) -> QtGui.QLabel:
@ -295,7 +294,6 @@ class MainWindow(QtGui.QMainWindow):
self.resize(*size or self._size)
# singleton app per actor
_qt_win: QtGui.QMainWindow = None