2018-04-11 18:42:03 +00:00
|
|
|
From ea032bd4a6cb66929da61477b1759e136c975189 Mon Sep 17 00:00:00 2001
|
2013-06-21 18:46:49 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Fri, 21 Jun 2013 14:44:08 -0400
|
2018-07-09 17:32:57 +00:00
|
|
|
Subject: [PATCH 097/251] Use -2 instead of -1 for our right-hand margin, so
|
2013-06-21 18:46:49 +00:00
|
|
|
linewrapping works (#976643).
|
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <grub2-owner@fedoraproject.org>
|
|
|
|
---
|
|
|
|
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 0e43f2c10cc..537d4bf86ff 100644
|
2013-06-21 18:46:49 +00:00
|
|
|
--- a/grub-core/normal/menu_text.c
|
|
|
|
+++ b/grub-core/normal/menu_text.c
|
2014-01-06 16:39:16 +00:00
|
|
|
@@ -334,7 +334,7 @@ grub_menu_init_page (int nested, int edit,
|
2013-06-21 18:46:49 +00:00
|
|
|
|
|
|
|
geo->border = 0;
|
|
|
|
geo->first_entry_x = 0; /* no margin */
|
|
|
|
- geo->entry_width = grub_term_width (term) - 1;
|
|
|
|
+ geo->entry_width = grub_term_width (term) - 2;
|
|
|
|
|
|
|
|
geo->first_entry_y = 3; /* three empty lines*/
|
|
|
|
|
|
|
|
--
|
2018-06-04 16:28:07 +00:00
|
|
|
2.17.1
|
2013-06-21 18:46:49 +00:00
|
|
|
|