structured data editor
git clone https://git.lucas.co/cce-data-editor.git
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);