git.lucas.co / cce-data-editor
structured data editor
git clone https://git.lucas.co/cce-data-editor.git

commit5bafbf2cfd710a22e28892a719c13906f74d3e70
parent2f88cf9200
authorLucas Galante <[email protected]>
date2026-07-01 11:08
Fix Add New Key label intersecting tree list

 src/main.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs
index 51c9173..c6e63d8 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1317,7 +1317,7 @@ impl Application for DataEditorApp {
 
             // Position tree_list
             let list_top = 52.0;
-            let list_bottom = bottom_y_calc(self.height);
+            let list_bottom = bottom_y_calc(self.height) - 25.0;
             let list_height = list_bottom - list_top;
             self.tree_list.set_rect(10.0, list_top, 380.0, list_height);