From 5b325e07ca18ab67807f66a6c5a8c2b6d7ea6643 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Fri, 29 Jun 2012 03:10:15 -0400 Subject: [PATCH] FSE now full redraws after msg upload --- mystic/HISTORY.txt | 3 +++ mystic/bbs_edit_full.pas | 3 +++ 2 files changed, 6 insertions(+) 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;