fix #80 - warning icons for d-scanner not always properly resets

This commit is contained in:
Basile Burg 2021-04-15 02:35:38 +02:00
parent 9b1391e781
commit 7a4f0af84b
2 changed files with 13 additions and 1 deletions

View File

@ -4,6 +4,9 @@
- releases, linux, gtk2: random crashes when save and open dialogs are displayed. (#79) - releases, linux, gtk2: random crashes when save and open dialogs are displayed. (#79)
## Bugs fixed
- editor, gutter: cases where warnings icons were not always updated. (#80)
## Other ## Other
- D2 highlighter: remove the keywords `body` (deprecated), `typedef` (deprecated), `macro` (unused). - D2 highlighter: remove the keywords `body` (deprecated), `typedef` (deprecated), `macro` (unused).

View File

@ -1584,6 +1584,7 @@ begin
SelectLine(true); SelectLine(true);
ExecuteCommand(ecCut, #0, nil); ExecuteCommand(ecCut, #0, nil);
Clipboard.AsText := TrimLeft(Clipboard.AsText); Clipboard.AsText := TrimLeft(Clipboard.AsText);
fCanDscan:= true;
end; end;
ecCopy: if not SelAvail then ecCopy: if not SelAvail then
begin begin
@ -1591,7 +1592,11 @@ begin
ExecuteCommand(ecCopy, #0, nil); ExecuteCommand(ecCopy, #0, nil);
SelEnd:=SelStart; SelEnd:=SelStart;
end; end;
ecPaste: patchClipboardIndentation; ecPaste:
begin
patchClipboardIndentation;
fCanDscan:= true;
end;
ecCompletionMenu: ecCompletionMenu:
begin begin
fCanAutoDot:=false; fCanAutoDot:=false;
@ -1625,6 +1630,10 @@ begin
lexWholeText([TLexOption.lxoNoWhites, TLexOption.lxoNoComments]); lexWholeText([TLexOption.lxoNoWhites, TLexOption.lxoNoComments]);
curlyBraceCloseAndIndent; curlyBraceCloseAndIndent;
end; end;
ecUndo:
fCanDscan:= true;
ecRedo:
fCanDscan:= true;
ecCommentSelection: ecCommentSelection:
commentSelection; commentSelection;
ecSwapVersionAllNone: ecSwapVersionAllNone: