reported width by one to compensate for curesor algorithm problem.
+2013-04-03 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/term/i386/pc/console.c (grub_console_getwh): Decrease
+ reported width by one to compensate for curesor algorithm problem.
+
2013-04-03 Vladimir Serbinenko <phcoder@gmail.com>
Fix screen corruption in menu entry editor and simplify the code
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