Skip to content

Commit

Permalink
Fix a typo in 420769a which breaks the microtuner (#6458)
Browse files Browse the repository at this point in the history
  • Loading branch information
CLandel89 authored Jul 7, 2022
1 parent b451e40 commit 1246e76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/MicrotunerConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,9 @@ bool MicrotunerConfig::applyScale()
newIntervals.emplace_back(1, 1);

#if (QT_VERSION >= QT_VERSION_CHECK(5,14,0))
QStringList input = m_keymapTextEdit->toPlainText().split('\n', Qt::SkipEmptyParts);
QStringList input = m_scaleTextEdit->toPlainText().split('\n', Qt::SkipEmptyParts);
#else
QStringList input = m_keymapTextEdit->toPlainText().split('\n', QString::SkipEmptyParts);
QStringList input = m_scaleTextEdit->toPlainText().split('\n', QString::SkipEmptyParts);
#endif
for (auto &line: input)
{
Expand Down

0 comments on commit 1246e76

Please sign in to comment.