Actually use the value from the "Always" context in Hotkey::GetHotkey
Originally committed to SVN as r6113.
This commit is contained in:
parent
7bb749b51f
commit
fe090969f4
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ std::string Hotkey::GetHotkey(const std::string &context, const std::string &com
|
||||||
if (ctext == "Default")
|
if (ctext == "Default")
|
||||||
ret = it->second.StrMenu();
|
ret = it->second.StrMenu();
|
||||||
else if (ret.empty() && ctext == "Always")
|
else if (ret.empty() && ctext == "Always")
|
||||||
it->second.StrMenu();
|
ret = it->second.StrMenu();
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue