Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
Updates to recent VL
Browse files Browse the repository at this point in the history
  • Loading branch information
azeno committed Sep 25, 2022
1 parent d470f5b commit 878a848
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/VL.ImGui/Core/ChannelWidget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ protected set
{
this.value = value;
Bang = true;
Channel?.OnNext(value!);
if (Channel != null)
Channel.Value = value!;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/VL.ImGui/VL.ImGui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Nullable>enable</Nullable>

<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<VLVersion>2022.5.0-0188-g31269d4f1c</VLVersion>
<VLVersion>2022.5.0-0225-ge247e95b60</VLVersion>
<VLInstallPath>$(ProgramFiles)\vvvv\vvvv_gamma_$(VLVersion)</VLInstallPath>
<PackageRepositories>"$(MsBuildThisFileDirectory)..\..\.."</PackageRepositories>

Expand Down

0 comments on commit 878a848

Please sign in to comment.