Actually use the value from the "Always" context in Hotkey::GetHotkey

Originally committed to SVN as r6113.
This commit is contained in:
Thomas Goyne 2011-12-22 21:27:17 +00:00
parent 7bb749b51f
commit fe090969f4
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ std::string Hotkey::GetHotkey(const std::string &context, const std::string &com
if (ctext == "Default")
ret = it->second.StrMenu();
else if (ret.empty() && ctext == "Always")
it->second.StrMenu();
ret = it->second.StrMenu();
}
return ret;
}