From e06df4dce05c8dd2ebd340ee1abcc8556f328d73 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 24 Nov 2022 16:53:57 +0100 Subject: only show hand cursor over interactible scenery --- editor/update.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'editor') diff --git a/editor/update.cpp b/editor/update.cpp index 9f347f0d..15d99d39 100644 --- a/editor/update.cpp +++ b/editor/update.cpp @@ -125,7 +125,8 @@ void app::update(float dt) do_camera(dt, keys, get_key_modifiers()); clear_non_repeated_keys(); - if (!_editor.current_tile_editor() && cursor.tile && find_clickable_scenery(*cursor.pixel)) + if (clickable_scenery* s; + !_editor.current_tile_editor() && cursor.tile && (s = find_clickable_scenery(*cursor.pixel)) && s->item.can_activate()) M->set_cursor(std::uint32_t(Cursor::Hand)); else M->set_cursor(std::uint32_t(Cursor::Arrow)); -- cgit v1.2.3