HackStudio: Add context option to set execution point while debugging

You can now right click in HackStudio's editor while debugging and
have the option to instantly move the current execution position to
the current line.
This commit is contained in:
FalseHonesty 2021-04-27 21:20:20 -04:00 committed by Linus Groh
commit b0145ea529
Notes: sideshowbarker 2024-07-18 19:00:35 +09:00
4 changed files with 30 additions and 0 deletions

View file

@ -104,6 +104,7 @@ private:
bool m_hovering_clickable { false };
bool m_autocomplete_in_focus { false };
RefPtr<GUI::Action> m_evaluate_expression_action;
RefPtr<GUI::Action> m_move_execution_to_line_action;
OwnPtr<LanguageClient> m_language_client;
};