From 2dc1c96dee0fc2a0a370df8b9950103f0f1fe4fd Mon Sep 17 00:00:00 2001 From: luboslenco Date: Sat, 12 Jul 2025 21:22:32 +0200 Subject: [PATCH] Fix pad --- base/tools/pad/sources/main.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base/tools/pad/sources/main.ts b/base/tools/pad/sources/main.ts index 6286b774..5579c7ab 100644 --- a/base/tools/pad/sources/main.ts +++ b/base/tools/pad/sources/main.ts @@ -197,10 +197,10 @@ function render() { else { ui_button("Drop folder here", UI_ALIGN_LEFT, ""); } - } - ui_fill(iron_window_width() - minimap_w, 0, minimap_w, UI_ELEMENT_H() + UI_ELEMENT_OFFSET() + 1, theme.SEPARATOR_COL); - ui_fill(storage.sidebar_w, 0, 1, iron_window_height(), theme.SEPARATOR_COL); + ui_fill(iron_window_width() - minimap_w, 0, minimap_w, UI_ELEMENT_H() + UI_ELEMENT_OFFSET() + 1, theme.SEPARATOR_COL); + ui_fill(storage.sidebar_w, 0, 1, iron_window_height(), theme.SEPARATOR_COL); + } let editor_updated: bool = false;