From ad8c6d858e0e422025f021389b5ccd0b5f71f31d Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Mon, 18 Apr 2022 17:33:34 +0200 Subject: [PATCH] CrashReporter: Fix "Save Backtrace" button width Previously, the size of the button changed with the window's size. Now this parameter is fixed and consistent with the "Debug in Hack Studio" button. --- Userland/Applications/CrashReporter/CrashReporterWindow.gml | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/CrashReporter/CrashReporterWindow.gml b/Userland/Applications/CrashReporter/CrashReporterWindow.gml index 90e2cd1bcc..f445776110 100644 --- a/Userland/Applications/CrashReporter/CrashReporterWindow.gml +++ b/Userland/Applications/CrashReporter/CrashReporterWindow.gml @@ -91,6 +91,7 @@ @GUI::Button { name: "save_backtrace_button" text: "Save Backtrace" + fixed_width: 150 } // HACK: We need something like Layout::add_spacer() in GML! :^)