corrected inner_area calculation

pull/11409/head
Stephen Broadley 2024-08-04 22:02:18 +01:00
parent 4a2ad21247
commit 2fed0f87e6
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ impl View {
.area
.clip_left(gutter_width + null_width)
.clip_bottom(1)
.with_width(text_width.min(self.area.width));
.with_width(text_width.min(self.area.width - gutter_width));
}
}