Merged in the bug fixes from EDK I.

*** Press F9 in Uefi64 FrontPage shouldnot enter sub-menu 
** [FT] Some UI error on multiple platforms on framework_20080811
** [FT] UI test of How tall are you(Hex) on framework_20080811



git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5773 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2008-09-02 02:15:59 +00:00
parent 2b4d6ac808
commit 7bc5ca171e
1 changed files with 6 additions and 2 deletions

View File

@ -887,12 +887,16 @@ PlatformBdsEnterFrontPage (
Status = ShowProgress (TimeoutDefault);
gBS->RaiseTPL (TPL_APPLICATION);
//
// Ensure screen is clear when switch Console from Graphics mode to Text mode
//
gST->ConOut->EnableCursor (gST->ConOut, TRUE);
gST->ConOut->ClearScreen (gST->ConOut);
if (EFI_ERROR (Status)) {
//
// Timeout or user press enter to continue
//
gST->ConOut->EnableCursor (gST->ConOut, TRUE);
gST->ConOut->ClearScreen (gST->ConOut);
goto Exit;
}
}