From 833a56faddc2517ded914fa5bcae9db5dcf75e2a Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 11 Jul 2023 14:58:54 -0400 Subject: [PATCH] Fix the tap handler on these buttons. --- gpt4all-chat/qml/SettingsDialog.qml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gpt4all-chat/qml/SettingsDialog.qml b/gpt4all-chat/qml/SettingsDialog.qml index e0c3d189..2fd0d04d 100644 --- a/gpt4all-chat/qml/SettingsDialog.qml +++ b/gpt4all-chat/qml/SettingsDialog.qml @@ -72,10 +72,11 @@ MyDialog { elide: Text.ElideRight color: theme.textColor width: 200 - TapHandler { - onTapped: { - listView.currentIndex = index - } + } + + TapHandler { + onTapped: { + listView.currentIndex = index } } }