Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix copy-paste error
  • Loading branch information
regulus79 committed Oct 6, 2024
commit bf95ea2053a11f03822eef963755522fe42b8f96
2 changes: 1 addition & 1 deletion src/gui/editors/PianoRoll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3746,7 +3746,7 @@ void PianoRoll::resizeEvent(QResizeEvent* re)
void PianoRoll::incrementLeftRightScoll(int value)
{
m_leftRightScroll->setValue(m_leftRightScroll->value() -
value * 0.3f / m_zoomXLevels[m_zoomingXModel.value()]);
value * 0.3f / m_zoomLevels[m_zoomingModel.value()]);
}


Expand Down