# HG changeset patch # User Jason Maltzen # Date 2018-05-17 21:59:12 # Node ID 0c583dbbd95f2f192a153dd4a978ae3be55f6216 # Parent d792b40d3ef97c2c452775d8dcd16ab32312db13 Fix a bug with reactions recording a blank color instead of the actual captured color. diff --git a/UI/CaptureView.cs b/UI/CaptureView.cs --- a/UI/CaptureView.cs +++ b/UI/CaptureView.cs @@ -401,6 +401,7 @@ namespace DesertPaintLab // Always update the reacted swatch this.reactionSwatch.Color = reactedColor; + this.reactedColor.Set(reactedColor); if (warning.Length != 0) { isCaptured = true;