From 1246e76a969baf6e20ad651a7fe7ff73db60b5d7 Mon Sep 17 00:00:00 2001 From: Chr L <1664262+CLandel89@users.noreply.github.com> Date: Thu, 7 Jul 2022 18:03:14 +0200 Subject: [PATCH] Fix a typo in 420769a which breaks the microtuner (#6458) --- src/gui/MicrotunerConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/MicrotunerConfig.cpp b/src/gui/MicrotunerConfig.cpp index 2f0f0edd9..06b777ce9 100644 --- a/src/gui/MicrotunerConfig.cpp +++ b/src/gui/MicrotunerConfig.cpp @@ -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) {