diff options
Diffstat (limited to 'src/screen.c')
| -rw-r--r-- | src/screen.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/screen.c b/src/screen.c index 44269ae..2f1955e 100644 --- a/src/screen.c +++ b/src/screen.c | |||
| @@ -211,13 +211,12 @@ static int mvwcreate_box(WINDOW *win, int y, int x, int height, int width, const | |||
| 211 | mvwhline(win, y + height - 1, x, realchars[1], width) - 1; | 211 | mvwhline(win, y + height - 1, x, realchars[1], width) - 1; |
| 212 | 212 | ||
| 213 | // Corners | 213 | // Corners |
| 214 | mvwaddch(win, y, x, realchars[2]); | 214 | mvwaddch(win, y, x, realchars[2]); // Upper left corner |
| 215 | mvwaddch(win, y, x + width - 1, realchars[3]); | 215 | mvwaddch(win, y, x + width - 1, realchars[3]); // Upper right corner |
| 216 | mvwaddch(win, y + height - 1, x, realchars[4]); | 216 | mvwaddch(win, y + height - 1, x, realchars[4]); // Lower left corner |
| 217 | mvwaddch(win, y + height - 1, x + width - 1, realchars[5]); | 217 | mvwaddch(win, y + height - 1, x + width - 1, realchars[5]); // Lower right corner |
| 218 | 218 | ||
| 219 | // Yeah I'm not happy about the magic numbers either, but this combo of shit makes the box draw correctly | 219 | // Yeah I'm not happy about the magic numbers either, but this combo of shit makes the box draw correctly |
| 220 | |||
| 221 | return 0; | 220 | return 0; |
| 222 | } | 221 | } |
| 223 | 222 | ||
| @@ -231,6 +230,9 @@ static int init_slotholder(struct slotholder *slots) { | |||
| 231 | getmaxyx(slots->subslot[i], my, mx); | 230 | getmaxyx(slots->subslot[i], my, mx); |
| 232 | 231 | ||
| 233 | mvwcreate_box(slots->subslot[i], 1, 1, my - 2, mx - 2, NULL); | 232 | mvwcreate_box(slots->subslot[i], 1, 1, my - 2, mx - 2, NULL); |
| 233 | for(int j = 0; j < 3; j++) { | ||
| 234 | mvwcreate_box(slots->subslot[i], 2 + (j * ((my - 2) / 3)), ((mx - 2) / 2) - (((mx - 2) / 3) / 2), (my - 2) / 3, (mx - 2) / 3, NULL); | ||
| 235 | } | ||
| 234 | 236 | ||
| 235 | wnoutrefresh(slots->subslot[i]); | 237 | wnoutrefresh(slots->subslot[i]); |
| 236 | } | 238 | } |
