diff options
author | Andreas Kling <kling@serenityos.org> | 2022-07-31 16:00:27 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-08-01 10:29:53 +0200 |
commit | b480f021175adedb5c9e2b8527cf84ddf891dc33 (patch) | |
tree | 3c1cfa235fb52b321fce1361b229acf68b7e1257 /Userland/Applications/CrashReporter | |
parent | d18c25e973ae51b300d4b5a3937605acee6f8ee9 (diff) | |
download | serenity-b480f021175adedb5c9e2b8527cf84ddf891dc33.zip |
CrashReporter: Add ellipsis (...) to "Save Backtrace" button
Since you must provide a file name before saving occurs, this button
should have an ellipsis.
Diffstat (limited to 'Userland/Applications/CrashReporter')
-rw-r--r-- | Userland/Applications/CrashReporter/CrashReporterWindow.gml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/CrashReporter/CrashReporterWindow.gml b/Userland/Applications/CrashReporter/CrashReporterWindow.gml index 7907904a62..5bb05c39e1 100644 --- a/Userland/Applications/CrashReporter/CrashReporterWindow.gml +++ b/Userland/Applications/CrashReporter/CrashReporterWindow.gml @@ -93,7 +93,7 @@ @GUI::DialogButton { name: "save_backtrace_button" - text: "Save Backtrace" + text: "Save Backtrace..." fixed_width: 160 } |