Skip to content

Commit

Permalink
Fixed parameter name to prevent name collision
Browse files Browse the repository at this point in the history
  • Loading branch information
dikadk committed Apr 16, 2024
1 parent 026fb7d commit f4138be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions melatonin/helpers/overlay_mouse_listener.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ namespace melatonin
dragEnabled = enable;
}

void enableSelection (bool enabled)
void enableSelection (bool enableSelection)
{
selectionEnabled = enabled;
selectionEnabled = enableSelection;
}

void mouseEnter (const juce::MouseEvent& event) override
Expand Down

0 comments on commit f4138be

Please sign in to comment.