Blame SOURCES/0476-Use-the-correct-indentation-for-the-term-help-text.patch

f96e0b
From 808d9cbac57e2aa8bbff22720dec833a1e69722b Mon Sep 17 00:00:00 2001
f96e0b
From: William Jon McCann <william.jon.mccann@gmail.com>
f96e0b
Date: Fri, 7 Jun 2013 14:08:49 -0400
f96e0b
Subject: [PATCH 476/482] Use the correct indentation for the term help text
f96e0b
f96e0b
That is consistent with the menu help text
f96e0b
---
f96e0b
 grub-core/normal/main.c | 4 ++--
f96e0b
 1 file changed, 2 insertions(+), 2 deletions(-)
f96e0b
f96e0b
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
f96e0b
index 3344e0a..f04d6f8 100644
f96e0b
--- a/grub-core/normal/main.c
f96e0b
+++ b/grub-core/normal/main.c
f96e0b
@@ -465,8 +465,8 @@ grub_normal_reader_init (int nested)
f96e0b
     grub_normal_init_page (term, 1);
f96e0b
     grub_term_setcursor (term, 1);
f96e0b
 
f96e0b
-    if (grub_term_width (term) > 3 + STANDARD_MARGIN + 20)
f96e0b
-      grub_print_message_indented (msg_formatted, 3, STANDARD_MARGIN, term);
f96e0b
+    if (grub_term_width (term) > 2 * STANDARD_MARGIN + 20)
f96e0b
+      grub_print_message_indented (msg_formatted, STANDARD_MARGIN, STANDARD_MARGIN, term);
f96e0b
     else
f96e0b
       grub_print_message_indented (msg_formatted, 0, 0, term);
f96e0b
     grub_putcode ('\n', term);
f96e0b
-- 
f96e0b
1.8.2.1
f96e0b