1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-15 18:15:53 +03:00

small code simplification

This commit is contained in:
Maxime Coste 2014-11-09 11:42:06 +00:00
parent 88aa707b9c
commit 766df0490c

View File

@ -128,7 +128,7 @@ String key_to_str(Key key)
else if (key.key >= Key::F1 and key.key < Key::F12)
{
named = true;
res = "F" + to_string((int)(Codepoint)key.key - (int)(Codepoint)Key::F1 + 1);
res = "F" + to_string((int)(key.key - Key::F1 + 1));
}
else
res = codepoint_to_str(key.key);