From 7b658d7925c72c64e939c231371ce52f718f51e0 Mon Sep 17 00:00:00 2001 From: James Crook Date: Sat, 17 Mar 2018 21:20:09 +0000 Subject: [PATCH] Fix problem where effects had gone from KeyConfigPrefs. --- src/commands/CommandManager.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/commands/CommandManager.cpp b/src/commands/CommandManager.cpp index 6c22588cc..6e0dfa90c 100644 --- a/src/commands/CommandManager.cpp +++ b/src/commands/CommandManager.cpp @@ -1709,8 +1709,10 @@ void CommandManager::GetAllCommandData( bool includeMultis) { for(const auto &entry : mCommandList) { - if ( entry->isEffect ) - continue; + // GetAllCommandData is used by KeyConfigPrefs. + // It does need the effects. + //if ( entry->isEffect ) + // continue; if (!entry->multi) { names.Add(entry->name);