mirror of https://gitlab.com/basile.b/dexed.git
clear by context, clear editor specific msg, not all the editor msg
This commit is contained in:
parent
826c591548
commit
bce244b754
|
@ -289,7 +289,14 @@ end;
|
|||
|
||||
procedure TCEMessagesWidget.actClearCurCatExecute(Sender: TObject);
|
||||
begin
|
||||
lmClearbyContext(fCtxt);
|
||||
case fCtxt of
|
||||
amcAll, amcApp, amcMisc :
|
||||
lmClearbyContext(fCtxt);
|
||||
amcEdit: if fDoc <> nil then
|
||||
lmClearbyData(fDoc);
|
||||
amcProj: if fProj <> nil then
|
||||
lmClearbyData(fProj);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TCEMessagesWidget.actCopyMsgExecute(Sender: TObject);
|
||||
|
|
Loading…
Reference in New Issue