diff --git a/mystic/HISTORY.txt b/mystic/HISTORY.txt index d4abc71..07456d4 100644 --- a/mystic/HISTORY.txt +++ b/mystic/HISTORY.txt @@ -4188,3 +4188,6 @@ ; MsgBase quickscan footer prompt ; &7=global total msg &8=global new msgs &9=global your msgs 489 |CRQuick Scan complete. |CR|CR|PA + + + The Full screen editor now does a full redraw of the editor screen and + text after uploading a .txt file into the editor. diff --git a/mystic/bbs_edit_full.pas b/mystic/bbs_edit_full.pas index 11a0dce..2f35abb 100644 --- a/mystic/bbs_edit_full.pas +++ b/mystic/bbs_edit_full.pas @@ -753,6 +753,9 @@ Begin 'U' : Begin Session.Msgs.MessageUpload(CurLine); TotalLine := CurLine; + + FullReDraw; + Exit; End; End;