gfxterm: fix calculation of terminal-top and terminal-height

They used screen width, not height.
This commit is contained in:
Konstantin Vlasov 2015-11-13 21:54:19 +03:00 committed by Andrei Borzenkov
parent c899d9f42c
commit 5646e03dba

View file

@ -255,7 +255,7 @@ theme_set_string (grub_gfxmenu_view_t view,
{
unsigned int tmp;
int err = theme_get_unsigned_int_from_proportional (value,
view->screen.width,
view->screen.height,
&tmp);
if (err != GRUB_ERR_NONE)
return err;
@ -275,7 +275,7 @@ theme_set_string (grub_gfxmenu_view_t view,
{
unsigned int tmp;
int err = theme_get_unsigned_int_from_proportional (value,
view->screen.width,
view->screen.height,
&tmp);
if (err != GRUB_ERR_NONE)
return err;