Disable mouse by default

This commit is contained in:
Digital Studium 2024-10-30 14:32:23 +03:00
parent dec1686899
commit 03af8f8373
1 changed files with 1 additions and 1 deletions

2
kls
View File

@ -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