mirror of https://gitlab.com/basile.b/dexed.git
Dont unselect message if target source is the one that has the focus, close #323
This commit is contained in:
parent
a08ac85eab
commit
3a73b9577b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue