diff --git a/programs/develop/cedit/CEDIT b/programs/develop/cedit/CEDIT index 2c0b9fe451..bbed588b43 100644 Binary files a/programs/develop/cedit/CEDIT and b/programs/develop/cedit/CEDIT differ diff --git a/programs/develop/cedit/SRC/CEdit.ob07 b/programs/develop/cedit/SRC/CEdit.ob07 index f53ea8c07d..3e07e0b044 100644 --- a/programs/develop/cedit/SRC/CEdit.ob07 +++ b/programs/develop/cedit/SRC/CEdit.ob07 @@ -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"; diff --git a/programs/develop/cedit/SRC/Text.ob07 b/programs/develop/cedit/SRC/Text.ob07 index aed18d7ce3..029f90e465 100644 --- a/programs/develop/cedit/SRC/Text.ob07 +++ b/programs/develop/cedit/SRC/Text.ob07 @@ -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;