From 03af8f8373aaf959a2019040c6966f02e526d9bb Mon Sep 17 00:00:00 2001 From: Digital Studium Date: Wed, 30 Oct 2024 14:32:23 +0300 Subject: [PATCH] Disable mouse by default --- kls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kls b/kls index a0f015a..d49c5a4 100755 --- a/kls +++ b/kls @@ -18,7 +18,7 @@ TOP_API_RESOURCES = ["pods", "services", "configmaps", "secrets", "persistentvol "deployments", "statefulsets", "daemonsets", "storageclasses"] HELP_TEXT = ("letters: filter mode, Esc: exit filter mode or exit kls, 1/Enter: get yaml, 2: describe, 3: edit, " "4: logs, 5: exec, 6: debug, arrows/TAB/PgUp/PgDn: navigation") -MOUSE_ENABLED = True +MOUSE_ENABLED = False SCREEN = curses.initscr() # screen initialization, needed for ROWS_HEIGHT working HEADER_HEIGHT = 4 # in rows FOOTER_HEIGHT = 3