From 2edced7ad05409109981fd26f64f6866daa1312a Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 24 Feb 2025 14:43:59 -0500 Subject: [PATCH] Handle nested buffering better --- Python/btui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/btui.py b/Python/btui.py index ce923cd..9b39bc0 100644 --- a/Python/btui.py +++ b/Python/btui.py @@ -196,9 +196,10 @@ class BTUI: @contextmanager def buffered(self): assert self._btui + prev_autoflush = self._autoflush self._autoflush = False yield - self._autoflush = True + self._autoflush = prev_autoflush self.flush() def getkey(self, timeout=None):