2018-03-15 19:05:59 +00:00
|
|
|
From 9ecf176aa2951d848ca2d0ab23e663b2ddc1b336 Mon Sep 17 00:00:00 2001
|
2013-06-12 19:24:37 +00:00
|
|
|
From: William Jon McCann <william.jon.mccann@gmail.com>
|
|
|
|
Date: Fri, 7 Jun 2013 14:08:49 -0400
|
2018-04-06 20:17:39 +00:00
|
|
|
Subject: [PATCH 095/229] Use the correct indentation for the term help text
|
2013-06-12 19:24:37 +00:00
|
|
|
|
|
|
|
That is consistent with the menu help text
|
|
|
|
---
|
|
|
|
grub-core/normal/main.c | 4 ++--
|
|
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/normal/main.c b/grub-core/normal/main.c
|
2018-02-27 18:56:41 +00:00
|
|
|
index f57b7508a76..0ce59fdc3f0 100644
|
2013-06-12 19:24:37 +00:00
|
|
|
--- a/grub-core/normal/main.c
|
|
|
|
+++ b/grub-core/normal/main.c
|
2014-03-13 18:02:22 +00:00
|
|
|
@@ -426,8 +426,8 @@ grub_normal_reader_init (int nested)
|
2013-06-12 19:24:37 +00:00
|
|
|
grub_normal_init_page (term, 1);
|
|
|
|
grub_term_setcursor (term, 1);
|
|
|
|
|
|
|
|
- if (grub_term_width (term) > 3 + STANDARD_MARGIN + 20)
|
|
|
|
- grub_print_message_indented (msg_formatted, 3, STANDARD_MARGIN, term);
|
|
|
|
+ if (grub_term_width (term) > 2 * STANDARD_MARGIN + 20)
|
|
|
|
+ grub_print_message_indented (msg_formatted, STANDARD_MARGIN, STANDARD_MARGIN, term);
|
|
|
|
else
|
|
|
|
grub_print_message_indented (msg_formatted, 0, 0, term);
|
|
|
|
grub_putcode ('\n', term);
|
|
|
|
--
|
2018-02-27 18:56:41 +00:00
|
|
|
2.15.0
|
2013-06-12 19:24:37 +00:00
|
|
|
|