Skip to content

Commit

Permalink
Fix fatal typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CYBERDEViL committed Jan 31, 2021
1 parent 25a4889 commit 1639ab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/carlabase/carla.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ void CarlaParamsView::refreshKnobs()
uint8_t groupId = m_carlaInstrument->m_paramModels[i]->groupId();
if (m_maxKnobWidthPerGroup[groupId] < m_knobs[i]->width())
{
m_maxKnobWidthPerGroup[groupId] = (m_knobs[i]->width() + m_inputScrollAreaLayout->spacing();
m_maxKnobWidthPerGroup[groupId] = m_knobs[i]->width() + m_inputScrollAreaLayout->spacing();
}
}
}
Expand Down

0 comments on commit 1639ab2

Please sign in to comment.