Skip to content

Commit

Permalink
Merge pull request #783 from laminar-oss/Fix-Typo-in-PreferenceSchema
Browse files Browse the repository at this point in the history
Fix Typo in PreferenceSchema.cpp
  • Loading branch information
azonenberg authored Oct 15, 2024
2 parents 6349695 + 8db3e1c commit 9d7cb55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ngscopeclient/PreferenceSchema.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@ void PreferenceManager::InitializeDefaults()
.Label("Trigger auto badge color")
.Description("Color for trigger 'auto' badge"));
stream.AddPreference(
Preference::Color("intrument_disabled_badge_color", ColorFromString("#666666"))
Preference::Color("instrument_disabled_badge_color", ColorFromString("#666666"))
.Label("Instrument disabled badge color")
.Description("Color for instrument 'disabled' badge"));
stream.AddPreference(
Preference::Color("intrument_offline_badge_color", ColorFromString("#CC4C4C"))
Preference::Color("instrument_offline_badge_color", ColorFromString("#CC4C4C"))
.Label("Instrument offline badge color")
.Description("Color for instrument 'offline' badge"));
stream.AddPreference(
Expand Down

0 comments on commit 9d7cb55

Please sign in to comment.