From 3cd455e5543129a7f9905a688b02b195ceb65ccb Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Thu, 11 Jan 2024 18:29:14 +0000 Subject: [PATCH] Calculator: Make the equals button non-focusable This is not necessary, as pressing Enter will activate the button whether it is in focus or not. This makes the equals button behave the same as all other buttons. --- Userland/Applications/Calculator/CalculatorWindow.gml | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/Calculator/CalculatorWindow.gml b/Userland/Applications/Calculator/CalculatorWindow.gml index b4ff1c3711..58c43af364 100644 --- a/Userland/Applications/Calculator/CalculatorWindow.gml +++ b/Userland/Applications/Calculator/CalculatorWindow.gml @@ -308,6 +308,7 @@ fixed_width: 35 fixed_height: 28 foreground_role: "SyntaxPreprocessorValue" + focus_policy: "NoFocus" } } }