summary refs log tree commit diff
path: root/v2/elements.ts
diff options
context:
space:
mode:
Diffstat (limited to 'v2/elements.ts')
-rw-r--r--v2/elements.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/v2/elements.ts b/v2/elements.ts
index d712d65..530ecbb 100644
--- a/v2/elements.ts
+++ b/v2/elements.ts
@@ -3,7 +3,7 @@ import { type Key } from 'node:readline';
 import { type Screen } from "./screen.ts";
 
 export abstract class Element {
-    override focusable: boolean = false;
+    focusable: boolean = false;
     focused: boolean = false;
     // screen property is asigned by the addElement function of Scren
     //@ts-ignore