* grub-core/term/i386/pc/console.c (grub_console_getwh): Decrease
reported width by one to compensate for curesor algorithm problem.
This commit is contained in:
parent
91bf46b188
commit
db8ff59f61
2 changed files with 7 additions and 1 deletions
|
@ -255,7 +255,8 @@ grub_console_getkeystatus (struct grub_term_input *term __attribute__ ((unused))
|
|||
static grub_uint16_t
|
||||
grub_console_getwh (struct grub_term_output *term __attribute__ ((unused)))
|
||||
{
|
||||
return (80 << 8) | 25;
|
||||
/* Due to current cursor moving algorithm we lost the last column. */
|
||||
return (79 << 8) | 25;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue