78e1a10
From 7857716e067795304fc788813e427fac3f9624d7 Mon Sep 17 00:00:00 2001
f4c76c0
From: William Jon McCann <william.jon.mccann@gmail.com>
f4c76c0
Date: Fri, 7 Jun 2013 14:08:23 -0400
78e1a10
Subject: [PATCH 094/216] Fix border spacing now that we aren't displaying it
f4c76c0
f4c76c0
---
f4c76c0
 grub-core/normal/menu_text.c | 6 +++---
f4c76c0
 1 file changed, 3 insertions(+), 3 deletions(-)
f4c76c0
f4c76c0
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
ec4acbb
index 64a83862f66..1062d64ee29 100644
f4c76c0
--- a/grub-core/normal/menu_text.c
f4c76c0
+++ b/grub-core/normal/menu_text.c
f4c76c0
@@ -331,12 +331,12 @@ grub_menu_init_page (int nested, int edit,
f4c76c0
   int empty_lines = 1;
f4c76c0
   int version_msg = 1;
f4c76c0
 
f4c76c0
-  geo->border = 1;
f4c76c0
-  geo->first_entry_x = 1 /* margin */ + 1 /* border */;
f4c76c0
+  geo->border = 0;
f4c76c0
+  geo->first_entry_x = 0 /* margin */ + 0 /* border */;
f4c76c0
   geo->entry_width = grub_term_width (term) - 5;
f4c76c0
 
f4c76c0
   geo->first_entry_y = 2 /* two empty lines*/
f4c76c0
-    + 1 /* GNU GRUB version text  */ + 1 /* top border */;
f4c76c0
+    + 0 /* GNU GRUB version text  */ + 1 /* top border */;
f4c76c0
 
f4c76c0
   geo->timeout_lines = 2;
f4c76c0
 
f4c76c0
-- 
ec4acbb
2.15.0
f4c76c0