Merge branch 'master' into floating_panes

This commit is contained in:
Nicholas Marriott
2026-06-02 20:36:08 +01:00
15 changed files with 215 additions and 235 deletions

View File

@@ -1035,7 +1035,7 @@ format_cb_pane_floating_flag(struct format_tree *ft)
struct window_pane *wp = ft->wp;
if (wp != NULL) {
if (wp->flags & PANE_FLOATING)
if (window_pane_is_floating(wp))
return (xstrdup("1"));
return (xstrdup("0"));
}