summaryrefslogtreecommitdiff
path: root/Userland/DevTools
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2023-02-19 22:12:07 +0200
committerAndreas Kling <kling@serenityos.org>2023-02-24 19:09:27 +0100
commit91224d47d20ab149ddf41e681ea6367c50123323 (patch)
tree3697e6390231bda4a9c6604a9806763974fbc6d5 /Userland/DevTools
parent6e5b1f5819d3161156d2b919183f1e2b6ed40658 (diff)
downloadserenity-91224d47d20ab149ddf41e681ea6367c50123323.zip
SystemMonitor: Add "Debug In HackStudio" action to process context menu
This action launches HackStudio with its debugger attached to the selected process.
Diffstat (limited to 'Userland/DevTools')
-rw-r--r--Userland/DevTools/HackStudio/HackStudioWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.cpp b/Userland/DevTools/HackStudio/HackStudioWidget.cpp
index 82470ece8f..71d9eb486c 100644
--- a/Userland/DevTools/HackStudio/HackStudioWidget.cpp
+++ b/Userland/DevTools/HackStudio/HackStudioWidget.cpp
@@ -1091,7 +1091,7 @@ void HackStudioWidget::initialize_debugger()
});
GUI::Application::the()->event_loop().wake();
},
- [this](float progress) {
+ [](float progress) {
if (GUI::Application::the()->active_window())
GUI::Application::the()->active_window()->set_progress(progress * 100);
});