Skip to content

Commit fc79c41

Browse files
committed
fix(window.set_window_option): Remove .refresh()
This causes builder to break tmux-python/tmuxp#860
1 parent b68d83e commit fc79c41

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/libtmux/window.py

-3
Original file line numberDiff line numberDiff line change
@@ -342,9 +342,6 @@ def set_window_option(self, option: str, value: t.Union[int, str]) -> "Window":
342342
:exc:`exc.OptionError`, :exc:`exc.UnknownOption`,
343343
:exc:`exc.InvalidOption`, :exc:`exc.AmbiguousOption`
344344
"""
345-
346-
self.refresh()
347-
348345
if isinstance(value, bool) and value:
349346
value = "on"
350347
elif isinstance(value, bool) and not value:

0 commit comments

Comments
 (0)