Skip to content

Commit

Permalink
Merge pull request directvt#570 from o-sdn-o/vt-input-mode
Browse files Browse the repository at this point in the history
Fix dead keys in cmd.exe (US-International)
  • Loading branch information
o-sdn-o committed Feb 17, 2024
2 parents a7d2105 + 36687c5 commit e2a3602
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/netxs/desktopio/application.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace netxs::app

namespace netxs::app::shared
{
static const auto version = "v0.9.70";
static const auto version = "v0.9.71";
static const auto repository = "https://github.com/directvt/vtm";
static const auto usr_config = "~/.config/vtm/settings.xml"s;
static const auto sys_config = "/etc/vtm/settings.xml"s;
Expand Down
2 changes: 1 addition & 1 deletion src/netxs/desktopio/consrv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ struct impl : consrv
default:
{
n--;
if (c == '\0' && v >= VK_OEM_4 && v <= VK_OEM_8) // Dead key pressed.
if (c == '\0' && v >= VK_OEM_1 && v <= VK_OEM_8) // Dead key detection.
{
break;
}
Expand Down

0 comments on commit e2a3602

Please sign in to comment.