Blame SOURCES/0119-Don-t-draw-a-border-around-the-menu.patch

f731ee
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f731ee
From: William Jon McCann <william.jon.mccann@gmail.com>
f731ee
Date: Wed, 15 May 2013 16:47:33 -0400
f731ee
Subject: [PATCH] Don't draw a border around the menu
f731ee
f731ee
It looks cleaner without it.
f731ee
---
f731ee
 grub-core/normal/menu_text.c | 43 -------------------------------------------
f731ee
 1 file changed, 43 deletions(-)
f731ee
f731ee
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
f731ee
index 6202c2a16c9..beddd7f81c1 100644
f731ee
--- a/grub-core/normal/menu_text.c
f731ee
+++ b/grub-core/normal/menu_text.c
f731ee
@@ -108,47 +108,6 @@ grub_print_message_indented (const char *msg, int margin_left, int margin_right,
f731ee
   grub_print_message_indented_real (msg, margin_left, margin_right, term, 0);
f731ee
 }
f731ee
 
f731ee
-static void
f731ee
-draw_border (struct grub_term_output *term, const struct grub_term_screen_geometry *geo)
f731ee
-{
f731ee
-  int i;
f731ee
-
f731ee
-  grub_term_setcolorstate (term, GRUB_TERM_COLOR_NORMAL);
f731ee
-
f731ee
-  grub_term_gotoxy (term, (struct grub_term_coordinate) { geo->first_entry_x - 1,
f731ee
-	geo->first_entry_y - 1 });
f731ee
-  grub_putcode (GRUB_UNICODE_CORNER_UL, term);
f731ee
-  for (i = 0; i < geo->entry_width + 1; i++)
f731ee
-    grub_putcode (GRUB_UNICODE_HLINE, term);
f731ee
-  grub_putcode (GRUB_UNICODE_CORNER_UR, term);
f731ee
-
f731ee
-  for (i = 0; i < geo->num_entries; i++)
f731ee
-    {
f731ee
-      grub_term_gotoxy (term, (struct grub_term_coordinate) { geo->first_entry_x - 1,
f731ee
-	    geo->first_entry_y + i });
f731ee
-      grub_putcode (GRUB_UNICODE_VLINE, term);
f731ee
-      grub_term_gotoxy (term,
f731ee
-			(struct grub_term_coordinate) { geo->first_entry_x + geo->entry_width + 1,
f731ee
-			    geo->first_entry_y + i });
f731ee
-      grub_putcode (GRUB_UNICODE_VLINE, term);
f731ee
-    }
f731ee
-
f731ee
-  grub_term_gotoxy (term,
f731ee
-		    (struct grub_term_coordinate) { geo->first_entry_x - 1,
f731ee
-			geo->first_entry_y - 1 + geo->num_entries + 1 });
f731ee
-  grub_putcode (GRUB_UNICODE_CORNER_LL, term);
f731ee
-  for (i = 0; i < geo->entry_width + 1; i++)
f731ee
-    grub_putcode (GRUB_UNICODE_HLINE, term);
f731ee
-  grub_putcode (GRUB_UNICODE_CORNER_LR, term);
f731ee
-
f731ee
-  grub_term_setcolorstate (term, GRUB_TERM_COLOR_NORMAL);
f731ee
-
f731ee
-  grub_term_gotoxy (term,
f731ee
-		    (struct grub_term_coordinate) { geo->first_entry_x - 1,
f731ee
-			(geo->first_entry_y - 1 + geo->num_entries
f731ee
-			 + GRUB_TERM_MARGIN + 1) });
f731ee
-}
f731ee
-
f731ee
 static int
f731ee
 print_message (int nested, int edit, struct grub_term_output *term, int dry_run)
f731ee
 {
f731ee
@@ -403,8 +362,6 @@ grub_menu_init_page (int nested, int edit,
f731ee
 
f731ee
   grub_term_normal_color = grub_color_menu_normal;
f731ee
   grub_term_highlight_color = grub_color_menu_highlight;
f731ee
-  if (geo->border)
f731ee
-    draw_border (term, geo);
f731ee
   grub_term_normal_color = old_color_normal;
f731ee
   grub_term_highlight_color = old_color_highlight;
f731ee
   geo->timeout_y = geo->first_entry_y + geo->num_entries