feat(gui): Add 'Force Prune Logs' button to Log Management panel.

This commit is contained in:
2026-03-06 14:33:29 -05:00
parent 81d8906811
commit b8485073da
2 changed files with 9 additions and 0 deletions

View File

@@ -825,6 +825,9 @@ class App:
reason="Manually whitelisted"
)
imgui.end_table()
if imgui.button("Force Prune Logs"):
self.controller.event_queue.put("gui_task", {"action": "click", "item": "btn_prune_logs"})
imgui.end()
def _render_files_panel(self) -> None: