mirror of https://gitlab.com/basile.b/dexed.git
messages, support for quick jump from assert errors
This commit is contained in:
parent
2a0a3a9f91
commit
ad280fc06c
|
@ -553,6 +553,7 @@ begin
|
||||||
item.ImageIndex := iconIndex(aKind);
|
item.ImageIndex := iconIndex(aKind);
|
||||||
item.SelectedIndex := item.ImageIndex;
|
item.SelectedIndex := item.ImageIndex;
|
||||||
clearOutOfRangeMessg;
|
clearOutOfRangeMessg;
|
||||||
|
//TODO:-cfeature: reset horz scroll bar to the left
|
||||||
scrollToBack;
|
scrollToBack;
|
||||||
Application.ProcessMessages;
|
Application.ProcessMessages;
|
||||||
filterMessages(fCtxt);
|
filterMessages(fCtxt);
|
||||||
|
@ -787,8 +788,11 @@ begin
|
||||||
exit;
|
exit;
|
||||||
getMultiDocHandler.openDocument(ident);
|
getMultiDocHandler.openDocument(ident);
|
||||||
result := true;
|
result := true;
|
||||||
end;
|
end
|
||||||
ident += aMessage[i];
|
else if aMessage[i] = '@' then
|
||||||
|
ident := ''
|
||||||
|
else
|
||||||
|
ident += aMessage[i];
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
Loading…
Reference in New Issue