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
1 change: 1 addition & 0 deletions ui/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ func (r *InstanceRenderer) Render(i *session.Instance, idx int, selected bool, h
remainingWidth := r.width
remainingWidth -= runewidth.StringWidth(prefix)
remainingWidth -= runewidth.StringWidth(branchIcon)
remainingWidth -= 2 // for the literal " " and "-" in the branchLine format string

diffWidth := runewidth.StringWidth(addedDiff) + runewidth.StringWidth(removedDiff)
if diffWidth > 0 {
Expand Down
Loading