From c0ce8d40b5134fa5d4c89461fc00d13f159b25a3 Mon Sep 17 00:00:00 2001 From: Fellippe Heitor Date: Tue, 26 Jan 2021 20:14:22 -0300 Subject: [PATCH] Fixes screen resize render after PRINT->_PRINTSTRING update. --- source/ide/ide_methods.bas | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/ide/ide_methods.bas b/source/ide/ide_methods.bas index 37df6ef62..797704c16 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -770,6 +770,7 @@ FUNCTION ide2 (ignore) _PALETTECOLOR 13, IDETextColor, 0 _PALETTECOLOR 14, IDEQuoteColor, 0 + SCREEN , , 3, 0 'static background COLOR 0, 7 _PRINTSTRING (1, 1), SPACE$(idewx) @@ -800,8 +801,10 @@ FUNCTION ide2 (ignore) ideshowtext END IF + PCOPY 3, 0 + _DISPLAY - _LIMIT 30 + _LIMIT 15 LOOP WHILE _RESIZE IF retval = 1 THEN 'screen dimensions have changed and everything must be redrawn/reapplied