summaryrefslogtreecommitdiff
path: root/Userland/Applications/CrashReporter/CrashReporterWindow.gml
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2021-11-20 13:34:47 +0200
committerLinus Groh <mail@linusgroh.de>2021-11-20 21:22:24 +0000
commitdd76ba2fe13e086a8891ff43d9d1c7e63275f726 (patch)
tree301e412b37e6a0e04e5ce98d56e9d830b7d88167 /Userland/Applications/CrashReporter/CrashReporterWindow.gml
parent8316eb73062cfb78713799849a47434e9539c225 (diff)
downloadserenity-dd76ba2fe13e086a8891ff43d9d1c7e63275f726.zip
CrashReporter: Add "Inspect in Hack Studio" button
This allows the user to open the crash coredump in Hack Studio and inspect it in the Debug tab.
Diffstat (limited to 'Userland/Applications/CrashReporter/CrashReporterWindow.gml')
-rw-r--r--Userland/Applications/CrashReporter/CrashReporterWindow.gml7
1 files changed, 7 insertions, 0 deletions
diff --git a/Userland/Applications/CrashReporter/CrashReporterWindow.gml b/Userland/Applications/CrashReporter/CrashReporterWindow.gml
index 5bf6d547f6..8ebb958222 100644
--- a/Userland/Applications/CrashReporter/CrashReporterWindow.gml
+++ b/Userland/Applications/CrashReporter/CrashReporterWindow.gml
@@ -82,6 +82,13 @@
layout: @GUI::HorizontalBoxLayout
+ @GUI::Button {
+ name: "inspect_button"
+ text: "Inspect in Hack Studio"
+ fixed_width: 150
+ fixed_height: 22
+ }
+
// HACK: We need something like Layout::add_spacer() in GML! :^)
@GUI::Widget