Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion view_dock_layout.v
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,10 @@ fn dock_group_view(core &DockLayoutCore, group &DockNode, cfg DockLayoutCfg, dra
}

if tab_buttons.len > 0 {
tab_buttons << column(width: 1, sizing: fixed_fill, color: color_sep)
// Use a definite height, not fixed_fill: a height-fill child inside the
// fit-height tab-bar row makes the row expand to fill the group, leaving a
// large blank gap above the panel content whenever a group has 2+ tabs.
tab_buttons << column(width: 1, height: 20, sizing: fixed_fixed, color: color_sep)
}
tab_buttons << dock_tab_button(core, group, panel_def, is_selected, cfg)
}
Expand Down
Loading