Path tool no longer overrides other hints
Closes https://discord.com/channels/731730685944922173/881073965047636018/1419968518086197269
Previously the path tool hints would override the hints from other operations (Eg GRS's hints would not show. This was the case for everything but the drag) It was just an order of operations issue. When "update_dynamic_hints" was created (replacing "update_hints"), the path tool updates would always happen after the other tools' hints. This means that, when you are in GRS, the GRS hints will be written and then immediately overwrite. Sending ToolMessage::UpdateHints() after updating the path tool's hints fixes this.
an alternative would be to call responses.add_front(FrontendMessage::UpdateInputHints { hint_data }); as opposed to responses.add(FrontendMessage::UpdateInputHints { hint_data });
Tested. Works as expected.
Video:
https://github.com/user-attachments/assets/72c2c016-6a2a-44d2-865d-ffcb4d374e95
CC @Keavon