2017-06-16 19:31:32 +00:00
|
|
|
From fc110aa2245aa53b305c14c789c66dd93c8b489e 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:30:55 -0400
|
2017-08-03 17:33:01 +00:00
|
|
|
Subject: [PATCH 081/177] Indent menu entries
|
2013-06-12 19:24:37 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
grub-core/normal/menu_text.c | 3 ++-
|
|
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
|
2017-06-16 19:31:32 +00:00
|
|
|
index 1062d64ee..ecc60f99f 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
|
|
|
@@ -239,7 +239,8 @@ print_entry (int y, int highlight, grub_menu_entry_t entry,
|
2013-06-12 19:24:37 +00:00
|
|
|
unicode_title[i] = ' ';
|
|
|
|
|
|
|
|
if (data->geo.num_entries > 1)
|
|
|
|
- grub_putcode (' ', data->term);
|
|
|
|
+ for (i = 0; i < STANDARD_MARGIN; i++)
|
|
|
|
+ grub_putcode (' ', data->term);
|
|
|
|
|
|
|
|
grub_print_ucs4_menu (unicode_title,
|
|
|
|
unicode_title + len,
|
|
|
|
--
|
2017-08-03 17:33:01 +00:00
|
|
|
2.13.3
|
2013-06-12 19:24:37 +00:00
|
|
|
|