2018-03-15 19:05:59 +00:00
|
|
|
From 7cb577925e3d40869b9748afa5060b178ba88abd Mon Sep 17 00:00:00 2001
|
2013-06-07 18:03:56 +00:00
|
|
|
From: William Jon McCann <william.jon.mccann@gmail.com>
|
|
|
|
Date: Wed, 15 May 2013 17:49:45 -0400
|
2018-03-15 19:05:59 +00:00
|
|
|
Subject: [PATCH 092/215] Don't add '*' to highlighted row
|
2013-06-07 18:03:56 +00:00
|
|
|
|
|
|
|
It is already highlighted.
|
|
|
|
---
|
|
|
|
grub-core/normal/menu_text.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
|
2018-02-27 18:56:41 +00:00
|
|
|
index e22bb91f6e8..a3d1f23f68f 100644
|
2013-06-07 18:03:56 +00:00
|
|
|
--- a/grub-core/normal/menu_text.c
|
|
|
|
+++ b/grub-core/normal/menu_text.c
|
2014-01-06 16:39:16 +00:00
|
|
|
@@ -242,7 +242,7 @@ print_entry (int y, int highlight, grub_menu_entry_t entry,
|
2013-06-07 18:03:56 +00:00
|
|
|
unicode_title[i] = ' ';
|
|
|
|
|
|
|
|
if (data->geo.num_entries > 1)
|
2014-01-14 17:57:20 +00:00
|
|
|
- grub_putcode (highlight ? '*' : ' ', data->term);
|
2014-06-24 15:18:06 +00:00
|
|
|
+ grub_putcode (' ', data->term);
|
2013-06-07 18:03:56 +00:00
|
|
|
|
|
|
|
grub_print_ucs4_menu (unicode_title,
|
|
|
|
unicode_title + len,
|
|
|
|
--
|
2018-02-27 18:56:41 +00:00
|
|
|
2.15.0
|
2013-06-07 18:03:56 +00:00
|
|
|
|