From a35d0463141f37a97b8a69ce8c76b98ad0321f1b Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 6 Apr 2024 12:05:59 -0500 Subject: [PATCH] freezer: `show_window_option` -> `_show_option` --- src/tmuxp/workspace/freezer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmuxp/workspace/freezer.py b/src/tmuxp/workspace/freezer.py index e782ccec2c..5923fc9395 100644 --- a/src/tmuxp/workspace/freezer.py +++ b/src/tmuxp/workspace/freezer.py @@ -70,7 +70,7 @@ def freeze(session: Session) -> t.Dict[str, t.Any]: for window in session.windows: window_config: t.Dict[str, t.Any] = { - "options": window.show_window_options(), + "options": window._show_options(), "window_name": window.name, "layout": window.window_layout, "panes": [],