f4c76c0
From 55197d5839d8456cd72b081e2a552e14d50611e9 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
f4c76c0
Subject: [PATCH 20/74] 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
f4c76c0
index 64a8386..1062d64 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
-- 
f4c76c0
2.4.3
f4c76c0