# HG changeset patch # User lenclud@WUE-9BW295J.ad.garmin.com # Date 1366207052 -7200 # Node ID b9cacc55888efe551d16b633e585a2f3bd49ce74 # Parent 2dc91822f312cc7de8d5d0e38b138d2a0c77af76 Now displaying sensor node background in green if FrontView enabled. diff -r 2dc91822f312 -r b9cacc55888e GUI/MainForm.cs --- a/GUI/MainForm.cs Sun Apr 14 22:38:41 2013 +0200 +++ b/GUI/MainForm.cs Wed Apr 17 15:57:32 2013 +0200 @@ -459,7 +459,15 @@ if (plotMenuItem.Checked && sensorNode != null && sensorPlotColors.TryGetValue(sensorNode.Sensor, out color)) e.TextColor = color; + + //If displayed in FrontView draw background in green + if (sensorNode != null && settings.GetValue(new Identifier(sensorNode.Sensor.Identifier, "FrontView").ToString(), false)) + { + SolidBrush greenBrush = new SolidBrush(Color.FromName("mediumspringgreen")); + e.BackgroundBrush = greenBrush; + } } else { + e.TextColor = Color.DarkGray; } }