From 531bcb147bcffddc40968087d3e1f86f05f27084 Mon Sep 17 00:00:00 2001 From: cuinixam <22344617+cuinixam@users.noreply.github.com> Date: Mon, 30 Oct 2023 13:02:15 +0100 Subject: [PATCH] feat: disable edit mode in gui --- src/kspl/gui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/kspl/gui.py b/src/kspl/gui.py index 026652f..dba9fb7 100644 --- a/src/kspl/gui.py +++ b/src/kspl/gui.py @@ -77,7 +77,8 @@ def __init__( # Keep track of the mapping between the tree view items and the config elements self.tree_view_items_mapping = self.populate_tree_view() self.tree.pack(fill="both", expand=True) - self.tree.bind("", self.double_click_handler) + # TODO: make the tree view editable + # self.tree.bind("", self.double_click_handler) # ======================================================== # put all together