CEDIT: bugfix

git-svn-id: svn://kolibrios.org@9194 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Anton Krotov 2021-09-16 22:27:49 +00:00
parent 7524609331
commit de0a25e478
3 changed files with 3 additions and 2 deletions

Binary file not shown.

View File

@ -28,7 +28,7 @@ IMPORT
RW, Ini, EB := EditBox, Icons, Tabs, Timer;
CONST
header = "CEdit (15-sep-2021)";
header = "CEdit (17-sep-2021)";
ShellFilter = "";
EditFilter = "SH|ASM|TXT|INC|OB07|C|CPP|H|PAS|PP|LUA|INI|JSON";

View File

@ -2193,7 +2193,8 @@ END draw;
PROCEDURE switch* (text: tText);
BEGIN
ChangeLog.set(text.chLog);
Lines.setMaxLength(text.maxLength)
Lines.setMaxLength(text.maxLength);
Lang.setCurLang(text.lang)
END switch;