Leave less right margin next to long (text) meters

This commit is contained in:
Daniel Lange 2021-01-28 16:17:40 +01:00 committed by BenBE
parent ba630e8ad5
commit b612256486
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ void Header_draw(const Header* this) {
for (int y = 0; y < height; y++) {
mvhline(y, 0, ' ', COLS);
}
const int width = COLS / this->nrColumns - (pad * this->nrColumns - 1) - 1;
const int width = COLS / this->nrColumns - pad;
int x = pad;
Header_forEachColumn(this, col) {