Dont unselect message if target source is the one that has the focus, close #323

This commit is contained in:
Basile Burg 2018-05-09 11:39:03 +02:00
parent a08ac85eab
commit 3a73b9577b
1 changed files with 4 additions and 1 deletions

View File

@ -1004,15 +1004,18 @@ procedure TCEMessagesWidget.handleMessageClick(Sender: TObject);
var
pos: TPoint;
msg: string;
old: TCESynMemo;
begin
if List.Selected.isNil then
exit;
if ssCtrl in GetKeyShiftState then
exit;
old := fDoc;
msg := List.Selected.Text;
if not openFileFromDmdMessage(msg) then
exit;
List.ClearSelection(false);
if fDoc <> old then
List.ClearSelection(false);
// from here, since a doc has the focus, List.Selected is nil
pos := getLineFromMessage(msg);
if fDoc.isNil then