2016-08-25 18:42:57 +00:00
|
|
|
From ee01481e906071d01649b61925eaac0348f9a9a7 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:23 -0400
|
2016-12-02 21:19:02 +00:00
|
|
|
Subject: [PATCH 31/90] Fix border spacing now that we aren't displaying it
|
2013-06-12 19:24:37 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
grub-core/normal/menu_text.c | 6 +++---
|
|
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
|
2015-07-22 13:44:51 +00:00
|
|
|
index 64a8386..1062d64 100644
|
2013-06-12 19:24:37 +00:00
|
|
|
--- a/grub-core/normal/menu_text.c
|
|
|
|
+++ b/grub-core/normal/menu_text.c
|
2014-01-06 16:39:16 +00:00
|
|
|
@@ -331,12 +331,12 @@ grub_menu_init_page (int nested, int edit,
|
2013-06-12 19:24:37 +00:00
|
|
|
int empty_lines = 1;
|
|
|
|
int version_msg = 1;
|
|
|
|
|
|
|
|
- geo->border = 1;
|
|
|
|
- geo->first_entry_x = 1 /* margin */ + 1 /* border */;
|
|
|
|
+ geo->border = 0;
|
|
|
|
+ geo->first_entry_x = 0 /* margin */ + 0 /* border */;
|
|
|
|
geo->entry_width = grub_term_width (term) - 5;
|
|
|
|
|
|
|
|
geo->first_entry_y = 2 /* two empty lines*/
|
|
|
|
- + 1 /* GNU GRUB version text */ + 1 /* top border */;
|
|
|
|
+ + 0 /* GNU GRUB version text */ + 1 /* top border */;
|
|
|
|
|
|
|
|
geo->timeout_lines = 2;
|
|
|
|
|
|
|
|
--
|
2016-12-01 22:10:14 +00:00
|
|
|
2.9.3
|
2013-06-12 19:24:37 +00:00
|
|
|
|