Skip to content

Commit 7289059

Browse files
committed
Fix crash with bool record option
1 parent 9a456ee commit 7289059

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Processors/RecordNode/EngineConfigWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ EngineParameterComponent::EngineParameterComponent(EngineParameter& param)
3030
{
3131
ToggleButton* but = new ToggleButton();
3232
but->setToggleState(param.boolParam.value,dontSendNotification);
33-
but->setBounds(120,0,20,20);
33+
but->setBounds(120,0,100,20);
3434
addAndMakeVisible(but);
3535
control = but;
3636
}

0 commit comments

Comments
 (0)