More condition not to unselect message

opt dbl click and context != editor
This commit is contained in:
Basile Burg 2018-05-10 12:03:45 +02:00
parent b6d138fbd0
commit 4fb8246951
1 changed files with 5 additions and 2 deletions

View File

@ -1004,6 +1004,7 @@ procedure TCEMessagesWidget.handleMessageClick(Sender: TObject);
var
pos: TPoint;
msg: string;
dat: PMessageData;
old: TCESynMemo;
begin
if List.Selected.isNil then
@ -1012,10 +1013,12 @@ begin
exit;
old := fDoc;
msg := List.Selected.Text;
dat := PMessageData(List.Selected.Data);
if not openFileFromDmdMessage(msg) then
exit;
if fDoc <> old then
List.ClearSelection(false);
if (fDoc <> old) and fOptions.singleMessageClick and
assigned(dat) and (dat^.ctxt = amcEdit) then
List.ClearSelection(false);
// from here, since a doc has the focus, List.Selected is nil
pos := getLineFromMessage(msg);
if fDoc.isNil then