Skip to content

Commit

Permalink
Merge pull request #2564 from unxed/konsole_fix
Browse files Browse the repository at this point in the history
F5 is broken in Linux kernel console and recent KDE Konsole. This PR fixes that
  • Loading branch information
elfmz authored Dec 14, 2024
2 parents 4923afe + 83d40ed commit e13a9e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WinPort/src/Backend/TTY/TTYInputSequenceParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ TTYInputSequenceParser::TTYInputSequenceParser(ITTYInputSpecialSequenceHandler *
AddStrF1F5(VK_F2, "Q"); AddStr(VK_F2, 0, "[[B");
AddStrF1F5(VK_F3, "R"); AddStr(VK_F3, 0, "[[C");
AddStrF1F5(VK_F4, "S"); AddStr(VK_F4, 0, "[[D");
AddStrF1F5(VK_CLEAR, "E"); AddStr(VK_CLEAR, 0, "[[E"); // NumPad center (5)
AddStrF1F5(VK_CLEAR, "E"); AddStr(VK_F5, 0, "[[E"); // VK_CLEAR is NumPad center (5)

AddStrTilde(VK_HOME, 1);
AddStrTilde(VK_INSERT, 2);
Expand Down

0 comments on commit e13a9e2

Please sign in to comment.