in front of chosen entry to mark it even if highlighting is lost.
+2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/normal/menu_text.c (print_entry): Put an asterisk
+ in front of chosen entry to mark it even if highlighting is lost.
+
2013-04-24 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/i386/linux.c (grub_linux_boot): Default to
|| unicode_title[i] == '\r' || unicode_title[i] == '\e')
unicode_title[i] = ' ';
- for (x = GRUB_TERM_LEFT_BORDER_X + GRUB_TERM_MARGIN + 1, i = 0;
+ for (x = GRUB_TERM_LEFT_BORDER_X + GRUB_TERM_MARGIN + 2, i = 0;
x < (int) (GRUB_TERM_LEFT_BORDER_X + grub_term_border_width (term)
- GRUB_TERM_MARGIN);)
{
break;
}
+ grub_putcode (highlight ? '*' : ' ', term);
+
grub_print_ucs4 (unicode_title,
unicode_title + last_printed, 0, 0, term);