From 916e929c8bb5cb061e99ab3181607f1e0ae381da Mon Sep 17 00:00:00 2001 From: Daniel Bross Date: Mon, 17 Mar 2025 22:59:40 +0100 Subject: [PATCH] Editor UI always there in editing-mode --- editor/editor_ui.jai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_ui.jai b/editor/editor_ui.jai index 4e157e7..098e8b0 100644 --- a/editor/editor_ui.jai +++ b/editor/editor_ui.jai @@ -141,7 +141,7 @@ text_fun : string; slider_value : float = 0.0; base_editor_update :: () { - if !engine.editor.hide_ui { + if !engine.editor.hide_ui || engine.mode == .EDITING { editor_ui(); }