diff options
author | Samuel Bowman <sam@sambowman.tech> | 2021-12-30 01:17:33 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-03 16:19:47 +0100 |
commit | 4711d789c95647d31e2435eec2195da4863f7e52 (patch) | |
tree | f4cb4ab6343617d3a56f3ed8f7a7c7fb4bc75359 /Userland/Applications/CrashReporter/CrashReporterWindow.gml | |
parent | 74d1eb650279d7b8512f65caad322d87db069b0f (diff) | |
download | serenity-4711d789c95647d31e2435eec2195da4863f7e52.zip |
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.
Diffstat (limited to 'Userland/Applications/CrashReporter/CrashReporterWindow.gml')
-rw-r--r-- | Userland/Applications/CrashReporter/CrashReporterWindow.gml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Userland/Applications/CrashReporter/CrashReporterWindow.gml b/Userland/Applications/CrashReporter/CrashReporterWindow.gml index 115367bc3c..529c390bda 100644 --- a/Userland/Applications/CrashReporter/CrashReporterWindow.gml +++ b/Userland/Applications/CrashReporter/CrashReporterWindow.gml @@ -73,8 +73,14 @@ } } + @GUI::Progressbar { + name: "progressbar" + text: "Generating crash report: " + } + @GUI::TabWidget { name: "tab_widget" + visible: false } @GUI::Widget { |