From 363f6659e4ded6e741cc61dcc4e85856186f848b Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Fri, 26 Jan 2024 17:09:18 -0500 Subject: [PATCH] Fix the settings font size to be a tad bigger. Signed-off-by: Adam Treat --- gpt4all-chat/qml/Theme.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt4all-chat/qml/Theme.qml b/gpt4all-chat/qml/Theme.qml index 127a2a90..dc5cca03 100644 --- a/gpt4all-chat/qml/Theme.qml +++ b/gpt4all-chat/qml/Theme.qml @@ -136,7 +136,7 @@ QtObject { property real fontSizeFixedSmall: 16 - property real fontSizeSmall: fontSizeLarge - 4 + property real fontSizeSmall: fontSizeLarge - 2 property real fontSizeLarge: MySettings.fontSize === "Small" ? Qt.application.font.pixelSize : MySettings.fontSize === "Medium" ? Qt.application.font.pixelSize + 5 : Qt.application.font.pixelSize + 10