grub2/0037-Use-2-instead-of-1-for-our-right-hand-margin-so-line.patch

28 lines
871 B
Diff
Raw Normal View History

2020-07-29 20:47:36 +08:00
From 10fe905b3b3364436fe5328724b21def775aec60 Mon Sep 17 00:00:00 2001
2019-09-30 10:52:04 -04:00
From: Peter Jones <pjones@redhat.com>
Date: Fri, 21 Jun 2013 14:44:08 -0400
2020-07-29 20:47:36 +08:00
Subject: [PATCH 037/220] Use -2 instead of -1 for our right-hand margin, so
2019-09-30 10:52:04 -04: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
2020-07-29 20:47:36 +08:00
index 0e43f2c..537d4bf 100644
2019-09-30 10:52:04 -04:00
--- a/grub-core/normal/menu_text.c
+++ b/grub-core/normal/menu_text.c
@@ -334,7 +334,7 @@ grub_menu_init_page (int nested, int edit,
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*/
2020-07-29 20:47:36 +08:00
--
1.8.3.1