From 68e1db27f895444c005dcd5e0b6315af1a4e16bc Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 10 Feb 2022 14:35:28 -0500 Subject: [PATCH] Drop old null window size --- piker/ui/_window.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/piker/ui/_window.py b/piker/ui/_window.py index 9dbe6704..46c35e52 100644 --- a/piker/ui/_window.py +++ b/piker/ui/_window.py @@ -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