Skip to content

Commit

Permalink
Fix checkmark in chain preset list on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed May 8, 2022
1 parent 6393ead commit 222f8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widget/weffectchainpresetbutton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void WEffectChainPresetButton::populateMenu() {
for (const auto& pChainPreset : m_pChainPresetManager->getPresetsSorted()) {
QString title = pChainPreset->name();
if (title == m_pChain->presetName()) {
title = "\u2713 " + title;
title = QStringLiteral("\u2713 ") + title;
chainIsPreset = true;
}
m_pMenu->addAction(title, this, [this, pChainPreset]() {
Expand Down

0 comments on commit 222f8b2

Please sign in to comment.