From 838017a46879a1c6df117c5bdf9e57a3d9742bac Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Sun, 1 May 2022 11:16:13 -0700 Subject: [PATCH] config: set default marker color to lime This feels slightly closer to the existing color --- app/config/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/config.cpp b/app/config/config.cpp index 66d764a87..501cc4f35 100644 --- a/app/config/config.cpp +++ b/app/config/config.cpp @@ -136,7 +136,7 @@ void Config::SetDefaults() SetEntryInternal(QStringLiteral("OnlinePixelFormat"), NodeValue::kInt, VideoParams::kFormatFloat32); SetEntryInternal(QStringLiteral("OfflinePixelFormat"), NodeValue::kInt, VideoParams::kFormatFloat16); - SetEntryInternal(QStringLiteral("MarkerColor"), NodeValue::kInt, ColorCoding::kGreen); + SetEntryInternal(QStringLiteral("MarkerColor"), NodeValue::kInt, ColorCoding::kLime); } void Config::Load()