From 3713831070b2aa0a9749596ef817a256a4fb9fad Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 5 Sep 2021 21:26:48 -0400 Subject: [PATCH] Fix fsp pane width to exactly the same as OHLC chart --- piker/ui/_chart.py | 1 + 1 file changed, 1 insertion(+) diff --git a/piker/ui/_chart.py b/piker/ui/_chart.py index 71280fa2..f8028d9b 100644 --- a/piker/ui/_chart.py +++ b/piker/ui/_chart.py @@ -547,6 +547,7 @@ class LinkedSplits(QWidget): if sidepane: # TODO: use a "panes" collection to manage this? sidepane.setMinimumWidth(self.chart.sidepane.width()) + sidepane.setMaximumWidth(self.chart.sidepane.width()) self.splitter.addWidget(qframe)