From c21ccaad0e9f805bc4ed328b34fbad82fad6e059 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Sun, 24 Jun 2018 22:40:09 -0300 Subject: [PATCH] Fixes infinite loop condition in recent commit. --- InForm/UiEditorPreview.bas | 2 -- 1 file changed, 2 deletions(-) diff --git a/InForm/UiEditorPreview.bas b/InForm/UiEditorPreview.bas index 635070e..cedea29 100644 --- a/InForm/UiEditorPreview.bas +++ b/InForm/UiEditorPreview.bas @@ -2970,8 +2970,6 @@ FUNCTION RestoreCHRfromEscapeCode$ (__Text$) IF LEN(tempNum$) THEN Text$ = LEFT$(Text$, BackSlash - 1) + CHR$(VAL(tempNum$)) + MID$(Text$, SemiColon + 1) END IF - - BackSlash = 0 LOOP RestoreCHRfromEscapeCode$ = Text$