Skip to content

Commit

Permalink
Updated #60 Highlight color to pale pinkish
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Rapp committed Sep 8, 2017
1 parent 67df47d commit 5da21db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cinteros.XTB.PluginTraceViewer/PluginTraceViewer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ private void ApplySettings(Settings settings)
}
catch
{
highlightColor = Color.FromArgb(255, 230, 230, 230);
highlightColor = ColorTranslator.FromHtml("#FFD0D0");
}
crmGridView.ShowLocalTimes = settings.LocalTime;
ShowTZInfo();
Expand Down
2 changes: 1 addition & 1 deletion Cinteros.XTB.PluginTraceViewer/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ public class Settings
public string Version { get; set; }
public bool LocalTime { get; set; } = false;
public bool HighlightIdentical { get; set; } = true;
public string HighligtColor { get; set; } = "#FFEEEEEE";
public string HighligtColor { get; set; } = "#FFD0D0";
}
}

0 comments on commit 5da21db

Please sign in to comment.