Added buffer flushes after displaying Scanning prompts
This commit is contained in:
parent
5674235b32
commit
bee95ca79e
|
@ -2922,6 +2922,7 @@ Var
|
||||||
Session.io.PromptInfo[1] := FBase.Name;
|
Session.io.PromptInfo[1] := FBase.Name;
|
||||||
Session.io.OutBS (Screen.CursorX, True);
|
Session.io.OutBS (Screen.CursorX, True);
|
||||||
Session.io.OutFull (Session.GetPrompt(87));
|
Session.io.OutFull (Session.GetPrompt(87));
|
||||||
|
Session.io.BufFlush;
|
||||||
|
|
||||||
Case ListFiles (3, Str) of
|
Case ListFiles (3, Str) of
|
||||||
0 : Found := False;
|
0 : Found := False;
|
||||||
|
@ -2991,8 +2992,10 @@ Var
|
||||||
Procedure Scan_Current_Base;
|
Procedure Scan_Current_Base;
|
||||||
Begin
|
Begin
|
||||||
Session.io.PromptInfo[1] := FBase.Name;
|
Session.io.PromptInfo[1] := FBase.Name;
|
||||||
|
|
||||||
Session.io.OutBS (Screen.CursorX, True);
|
Session.io.OutBS (Screen.CursorX, True);
|
||||||
Session.io.OutFull (Session.GetPrompt(87));
|
Session.io.OutFull (Session.GetPrompt(87));
|
||||||
|
Session.io.BufFlush;
|
||||||
|
|
||||||
Case ListFiles (2, '') of
|
Case ListFiles (2, '') of
|
||||||
0 : Found := False;
|
0 : Found := False;
|
||||||
|
|
Loading…
Reference in New Issue