Skip to content

Commit

Permalink
set LumatoneKey default colour to black, not transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
vsicurella committed Jul 19, 2024
1 parent 40625b2 commit da3548f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/lumatone_editor_library/data/lumatone_key.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ LumatoneKey::LumatoneKey(LumatoneKeyType newKeyType)
{
noteNumber = 0;
channelNumber = 1;
colour = juce::Colour();
colour = juce::Colours::black;
keyType = newKeyType;
ccFaderDefault = true;

Expand Down
2 changes: 1 addition & 1 deletion Source/lumatone_editor_library/data/lumatone_key.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct LumatoneKeyPropertyData
bool useChannel = false;
bool useCCFaderDefault = false;

juce::Colour colour = juce::Colour();
juce::Colour colour = juce::Colours::black;
LumatoneKeyType type = LumatoneKeyType::disabledDefault;
int note = -1;
int channel = -1;
Expand Down

0 comments on commit da3548f

Please sign in to comment.