Skip to content

Commit

Permalink
Merge branch 'datebox-fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonCactus committed Mar 30, 2021
2 parents 0a1b0ee + a555102 commit 6817e70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ttyclock.c
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@ set_box(bool b)
wbkgdset(ttyclock.framewin, COLOR_PAIR(0));
wbkgdset(ttyclock.datewin, COLOR_PAIR(0));
box(ttyclock.framewin, 0, 0);
box(ttyclock.datewin, 0, 0);
if (ttyclock.option.date)
box(ttyclock.datewin, 0, 0);
}
else {
wborder(ttyclock.framewin, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ');
Expand Down Expand Up @@ -676,4 +677,5 @@ main(int argc, char **argv)
return 0;
}


// vim: expandtab tabstop=5 softtabstop=5 shiftwidth=5

0 comments on commit 6817e70

Please sign in to comment.