Skip to content

Commit

Permalink
Merge pull request #4748 from daschuer/chain_preset_list
Browse files Browse the repository at this point in the history
Fix checkmark in chain preset list on Windows
  • Loading branch information
Swiftb0y authored May 9, 2022
2 parents d7555df + 222f8b2 commit 34c6a95
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 34c6a95

Please sign in to comment.