From b79faa620704f6e0c1194d882f9f5a5cdbb18042 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Wed, 8 Jan 2025 16:43:34 -0800 Subject: [PATCH] FEXConfig: Fixes instcount not being editable by keyboard Fixes #4121 --- Source/Tools/FEXConfig/main.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Tools/FEXConfig/main.qml b/Source/Tools/FEXConfig/main.qml index c8cb01aa82..b3328b096e 100644 --- a/Source/Tools/FEXConfig/main.qml +++ b/Source/Tools/FEXConfig/main.qml @@ -222,6 +222,8 @@ ApplicationWindow { component ConfigSpinBox: SpinBox { property string config + editable: true + textFromValue: (val) => { if (valueFromConfig === "") { return qsTr("(not set)");