Fixed win32 input for Danish keyboard layout

macos-click-through
Rasmus Michelsen 5 years ago
parent a7a01c9247
commit 09b25bd636

@ -70,11 +70,11 @@ fn append_modifiers(
special = true;
result = format!("S-{}", result);
}
if ctrl {
if ctrl && !alt {
special = true;
result = format!("C-{}", result);
}
if alt {
if alt && !ctrl {
special = true;
result = format!("M-{}", result);
}

Loading…
Cancel
Save