Moved luadebug to the new structure as well

This commit is contained in:
2025-10-26 13:01:40 +01:00
parent abedca2394
commit 92fd3cabf8
4 changed files with 175 additions and 87 deletions

View File

@ -233,6 +233,11 @@ if required_toolbar_plugins and ToolbarView then
else
table.insert(t, {symbol = "D", command = "jpdebug:stop"})
end
if debugger.is_running() then
if debugger.debugrunner.caps.can_pause then table.insert(t, {symbol="C",command=""}) end
end
table.insert(t, {symbol = "E", command = "jpdebug:reload-runners"})
self.toolbar_commands = t
end