tui: tighten live tool/streaming spacing

This commit is contained in:
patriceckhart 2026-05-04 16:55:33 +02:00
parent b5ab07f9a0
commit ff1af01fd7

View file

@ -197,7 +197,7 @@ func (v *View) BuildLive(width int) []string {
out = append(out, indent+w)
}
}
out = append(out, "")
// out = append(out, "")
}
finalised := map[string]bool{}
for _, m := range v.Messages {
@ -215,11 +215,11 @@ func (v *View) BuildLive(width int) []string {
continue
}
out = append(out, v.renderToolCall(tc, width)...)
out = append(out, "")
// out = append(out, "")
}
if v.Err != "" {
out = append(out, v.Theme.FG256(v.Theme.Error, "✖ "+v.Err))
out = append(out, "")
// out = append(out, "")
}
return out
}