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