mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 08:22:44 +00:00
Fix draw_box dims
This commit is contained in:
parent
3cab153245
commit
3a9d53eaf3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4803
@ -217,7 +217,7 @@ edit_disklabel(int disk)
|
||||
|
||||
keypad(window, TRUE);
|
||||
|
||||
draw_box(window, 0, 0, 24, 79, dialog_attr, border_attr);
|
||||
draw_box(window, 0, 0, LINES, COLS, dialog_attr, border_attr);
|
||||
|
||||
/* Only one toggle to set up */
|
||||
for (i=0; i < MAXPARTITIONS; i++)
|
||||
|
@ -352,7 +352,7 @@ edit_mbr(int disk)
|
||||
keypad(window, TRUE);
|
||||
|
||||
dialog_clear_norefresh();
|
||||
draw_box(window, 0, 0, 24, 79, dialog_attr, border_attr);
|
||||
draw_box(window, 0, 0, LINES, COLS, dialog_attr, border_attr);
|
||||
|
||||
cur_field = 1;
|
||||
ok = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user