Skip to content

Commit

Permalink
feat: disable edit mode in gui
Browse files Browse the repository at this point in the history
  • Loading branch information
cuinixam committed Oct 30, 2023
1 parent 4f63a50 commit 531bcb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/kspl/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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("<Double-1>", self.double_click_handler)
# TODO: make the tree view editable
# self.tree.bind("<Double-1>", self.double_click_handler)

# ========================================================
# put all together
Expand Down

0 comments on commit 531bcb1

Please sign in to comment.