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

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