From beb726e65d8a710748c929de78aa920d39841117 Mon Sep 17 00:00:00 2001 From: fgenesis Date: Sun, 22 Sep 2024 01:22:34 +0200 Subject: [PATCH] editor: hide ghost sprite when any tile is selected --- Aquaria/SceneEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Aquaria/SceneEditor.cpp b/Aquaria/SceneEditor.cpp index a41264c..ed7c8fc 100644 --- a/Aquaria/SceneEditor.cpp +++ b/Aquaria/SceneEditor.cpp @@ -2513,7 +2513,7 @@ void SceneEditor::update(float dt) } } - if (sel >= 0 || ismulti) + if (sel >= 0 || ismulti || state != ES_SELECTING) placer->alpha = 0; else placer->alpha = 0.5;