1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:17:34 +00:00

CrashReporter: Move progressbar into main window

Previously we would create a temporary progress window to show a
progressbar while the coredump is processed. Since we're only waiting
on backtraces and CPU register states, we can move the progressbar
into the main window and show everything else immediately while the
slow parts are generated in a BackgroundAction.
This commit is contained in:
Samuel Bowman 2021-12-30 01:17:33 -05:00 committed by Andreas Kling
parent 74d1eb6502
commit 4711d789c9
2 changed files with 87 additions and 103 deletions

View file

@ -73,8 +73,14 @@
}
}
@GUI::Progressbar {
name: "progressbar"
text: "Generating crash report: "
}
@GUI::TabWidget {
name: "tab_widget"
visible: false
}
@GUI::Widget {