grub2/0143-grub-core-normal-menu_text.c-grub_menu_init_page-Fix.patch
Peter Jones f74b50e380 Rebase to upstream, fix a pile of bugs. The usual.
Signed-off-by: Peter Jones <pjones@redhat.com>
2013-06-12 15:37:08 -04:00

41 lines
1.4 KiB
Diff

From 7d0513c0e5552c09b21e66f73b718f51cb8a6afc Mon Sep 17 00:00:00 2001
From: Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Date: Sun, 27 Jan 2013 16:12:05 +0100
Subject: [PATCH 143/482] * grub-core/normal/menu_text.c
(grub_menu_init_page): Fix behaviour when menu highlight color isn't set.
---
ChangeLog | 5 +++++
grub-core/normal/menu_text.c | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index f5cb7dc..2ad83f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-01-27 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/normal/menu_text.c (grub_menu_init_page): Fix behaviour
+ when menu highlight color isn't set.
+
2013-01-27 C. Masloch <pushbx@38.de>
Improve FreeDOS direct loading support compatibility.
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
index 80a7cd9..0031b0c 100644
--- a/grub-core/normal/menu_text.c
+++ b/grub-core/normal/menu_text.c
@@ -357,7 +357,7 @@ grub_menu_init_page (int nested, int edit, int *num_entries,
old_color_normal = grub_term_normal_color;
old_color_highlight = grub_term_highlight_color;
grub_color_menu_normal = grub_term_normal_color;
- grub_color_menu_highlight = grub_color_menu_highlight;
+ grub_color_menu_highlight = grub_term_highlight_color;
/* Then give user a chance to replace them. */
grub_parse_color_name_pair (&grub_color_menu_normal,
--
1.8.2.1