CEdit: bugfix

git-svn-id: svn://kolibrios.org@9834 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Anton Krotov 2022-06-09 21:19:03 +00:00
parent 98c8bda617
commit cc0d0d49e0
2 changed files with 24 additions and 16 deletions

Binary file not shown.

View File

@ -28,7 +28,7 @@ IMPORT
RW, Ini, EB := EditBox, Tabs, Toolbar, SB := StatusBar;
CONST
HEADER = "CEdit (17-may-2022)";
HEADER = "CEdit (09-jun-2022)";
ShellFilter = "";
EditFilter = "SH|INC|TXT|ASM|OB07|C|CPP|H|PAS|PP|LUA|INI|JSON";
@ -186,7 +186,7 @@ VAR
OD: OpenDlg.Dialog;
confirm, notFound, menuFindClicked, search, searchOpened: BOOLEAN;
switch, closing: BOOLEAN;
switch, closing, newtab: BOOLEAN;
leftButton: BOOLEAN;
LEFT, RIGHT, BOTTOM: INTEGER;
@ -765,7 +765,9 @@ BEGIN
Tabs.switch(tabs, n);
Switch(texts[n]);
resetTimer;
IF ~newtab THEN
draw_window
END
END SwitchTab;
@ -777,6 +779,7 @@ BEGIN
nov := T.New();
T.SetPos(nov, 0, 0);
insert(textsCount, nov);
newtab := TRUE;
SwitchTab(curText)
ELSE
error("too many files")
@ -2082,6 +2085,7 @@ BEGIN
debugScript := Ini.debugScript;
leftButton := FALSE;
resized := FALSE;
newtab := FALSE;
K.ScreenSize(winWidth, winHeight);
scrollWidth := winHeight DIV 35;
winWidth := (winWidth*80) DIV 100 - (128 + 30);
@ -2240,6 +2244,10 @@ BEGIN
scr := K.Scroll()
END
|7: receiveIPC
END;
IF newtab THEN
Redraw(resized, width, height, cliWidth, cliHeight);
newtab := FALSE
END
END
END main;