1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

CrashReporter: Show arguments and environment

Arguments as a simple label, environment in a new tab. :^)

Closes #4779.
This commit is contained in:
Linus Groh 2021-01-15 20:51:52 +01:00 committed by Andreas Kling
parent 0187fd4fdd
commit 33c31e2198
2 changed files with 34 additions and 0 deletions

View file

@ -58,6 +58,24 @@
}
}
@GUI::Widget {
fixed_height: 18
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "Arguments:"
text_alignment: "CenterLeft"
fixed_width: 90
}
@GUI::Label {
name: "arguments_label"
text_alignment: "CenterLeft"
}
}
@GUI::TabWidget {
name: "tab_widget"
}