diff --git a/plugins/Kaleidoscope-Unicode/src/kaleidoscope/plugin/Unicode.cpp b/plugins/Kaleidoscope-Unicode/src/kaleidoscope/plugin/Unicode.cpp index da4c2ce8..39579b5d 100644 --- a/plugins/Kaleidoscope-Unicode/src/kaleidoscope/plugin/Unicode.cpp +++ b/plugins/Kaleidoscope-Unicode/src/kaleidoscope/plugin/Unicode.cpp @@ -95,7 +95,7 @@ void Unicode::typeCode(uint32_t unicode) { if (digit == 0) { if (on_zero_start == false) { Key key; - if (::HostOS.os() == hostos::WINDOWS) { + if (::HostOS.os() != hostos::OSX) { key = hexToKeysWithNumpad(digit); } else { key = hexToKey(digit); @@ -109,7 +109,7 @@ void Unicode::typeCode(uint32_t unicode) { } } else { Key key; - if (::HostOS.os() == hostos::WINDOWS) { + if (::HostOS.os() != hostos::OSX) { key = hexToKeysWithNumpad(digit); } else { key = hexToKey(digit);