Tony L
Tony L
When my app is stopped at some breakpoint and I try to scroll through the code and my mouse happens to hover over a variable. The small variable popup stops...
I added a pull request to fix this https://github.com/EpicGames/raddebugger/pull/87. https://github.com/EpicGames/raddebugger/assets/13787455/4aea3498-24ad-4e94-8648-8f53b55f24f6 This results in that a new panel is created for the same source code every time FindCodeLocation is called. Also...
Explained here: https://github.com/EpicGames/raddebugger/issues/86 `df_possible_overrides_from_entity(Arena *arena, DF_Entity *entity)` function keeps creating new strings because the override is not valid. Adding a check for override fixes the issue.
Issue: https://github.com/EpicGames/raddebugger/issues/16 Set is_editing to true when an active panel begins an edit. If the panel focus goes somewhere else and the edit is still live in the background it...