Skip to content

Commit

Permalink
fix control click and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Oct 30, 2024
1 parent 8a9dc46 commit 26b5e48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/props/Base.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<StudioVersion>0.20.4.0</StudioVersion>
<StudioVersion>0.20.5.0</StudioVersion>
<CoreVersion>0.30.3.0</CoreVersion>
<UniversalFpgaProjectSystemVersion>0.30.3.0</UniversalFpgaProjectSystemVersion>
<EssentialsVersion>0.9.0</EssentialsVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/OneWare.Output/Views/OutputView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 26b5e48

Please sign in to comment.