From 1e73828ec5c53c83c43cba2ea7dc276ed10e90e8 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Sun, 11 Jul 2021 08:58:49 +0100 Subject: [PATCH] options only --- rich/align.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rich/align.py b/rich/align.py index 13716204..d98d3c00 100644 --- a/rich/align.py +++ b/rich/align.py @@ -142,7 +142,8 @@ class Align(JupyterMixin): Constrain( self.renderable, width if self.width is None else min(width, self.width) ), - options.update(height=self.height or options.height or 1), + options + # options.update(height=self.height or options.height or 1), ) lines = list(Segment.split_lines(rendered)) width, height = Segment.get_shape(lines)