diff --git a/build/props/Base.props b/build/props/Base.props index a9b3ee72..f6e2167b 100644 --- a/build/props/Base.props +++ b/build/props/Base.props @@ -1,7 +1,7 @@  - 0.20.4.0 + 0.20.5.0 0.30.3.0 0.30.3.0 0.9.0 diff --git a/src/OneWare.Output/Views/OutputView.axaml.cs b/src/OneWare.Output/Views/OutputView.axaml.cs index 64b94c90..1abbfefc 100644 --- a/src/OneWare.Output/Views/OutputView.axaml.cs +++ b/src/OneWare.Output/Views/OutputView.axaml.cs @@ -113,7 +113,7 @@ private void SearchPath() var matches = regex.Matches(lineText); - var match = matches.FirstOrDefault(x => x.Index <= pointerPosition && x.Index + x.Length >= pointerPosition); + var match = matches.FirstOrDefault(x => x.Index + line.Offset <= pointerPosition && x.Index + line.Offset + x.Length >= pointerPosition); if (match is not { Success: true }) return;