fix(tui): remove native modifier escape hatch

This commit is contained in:
Armin Ronacher
2026-05-23 15:32:38 +02:00
parent c5181a266e
commit 30b3ab3532
2 changed files with 0 additions and 21 deletions

View File

@@ -49,7 +49,6 @@ function loadNativeModifiersHelper(): NativeModifiersHelper | undefined {
}
export function isNativeModifierPressed(key: ModifierKey): boolean {
if (process.env.PI_TUI_DISABLE_NATIVE_MODIFIERS === "1") return false;
const helper = loadNativeModifiersHelper();
if (!helper) return false;
try {