1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:37:35 +00:00

HackStudio: Allow changing variable values in debugger

This patch adds a context menu to variables in the debugger variable
tree view that has an option to set the value of a variable. An input
box will pop up asking for the new value of the variable, which
is then parsed and used to set the actual variable.
This commit is contained in:
FalseHonesty 2020-05-30 14:19:49 -04:00 committed by Andreas Kling
parent ab40cc60d1
commit 75e42648e1
5 changed files with 108 additions and 14 deletions

View file

@ -46,4 +46,5 @@ private:
RefPtr<GUI::TreeView> m_variables_view;
RefPtr<GUI::ListView> m_backtrace_view;
RefPtr<GUI::Menu> m_variable_context_menu;
};