From 3ed6a3fea885f144001874f43aca8e367b882c5a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 13 Jun 2021 21:48:15 +0200 Subject: [PATCH] Calculator: Fix offensive button misalignment The UI of this application is still quite bad/uneven, but this at least fixes the most egregious button misalignment. --- Userland/Applications/Calculator/CalculatorWindow.gml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/Calculator/CalculatorWindow.gml b/Userland/Applications/Calculator/CalculatorWindow.gml index f3bae0be4d..882bb30d9b 100644 --- a/Userland/Applications/Calculator/CalculatorWindow.gml +++ b/Userland/Applications/Calculator/CalculatorWindow.gml @@ -45,7 +45,7 @@ @GUI::Button { name: "clear_error_button" text: "CE" - fixed_width: 55 + fixed_width: 56 fixed_height: 28 foreground_color: "brown" }