From 17ceb59a71089ab9c995f6c3abc13f8a0698e21d Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Mon, 23 Nov 2020 10:45:49 -0700 Subject: [PATCH] Fix logical error in separated/intermixed sidebar settings --- imports/NeoChat/Page/SettingsPage.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/imports/NeoChat/Page/SettingsPage.qml b/imports/NeoChat/Page/SettingsPage.qml index 1cc8ab14d..333ec7f79 100644 --- a/imports/NeoChat/Page/SettingsPage.qml +++ b/imports/NeoChat/Page/SettingsPage.qml @@ -25,13 +25,13 @@ Kirigami.ScrollablePage { QQC2.RadioButton { Kirigami.FormData.label: i18n("Rooms and private chats:") text: i18n("Separated") - checked: Config.mergeRoomList - onToggled: Config.mergeRoomList = true - } - QQC2.RadioButton { - text: i18n("Intermixed") checked: !Config.mergeRoomList onToggled: Config.mergeRoomList = false } + QQC2.RadioButton { + text: i18n("Intermixed") + checked: Config.mergeRoomList + onToggled: Config.mergeRoomList = true + } } }