1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Data model events - Fixed render exception when removing a path an event relies on

This commit is contained in:
Robert 2021-04-30 18:07:25 +02:00
parent 52d0efb90e
commit 89a8fa49d6

View File

@ -24,6 +24,9 @@ namespace Artemis.Core
public void Update()
{
if (!Path.IsValid)
return;
object? value = Path.GetValue();
if (value != null)
CurrentValue = (T?) value;