From 98eea14da82881b6bc18f9e1cc0e9c7bcfd27f38 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 17 Mar 2021 15:11:42 -0400 Subject: [PATCH] fix default mode --- ui/app/AppMain.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/app/AppMain.qml b/ui/app/AppMain.qml index 4d1b6ba01f..bf081d5bac 100644 --- a/ui/app/AppMain.qml +++ b/ui/app/AppMain.qml @@ -161,8 +161,8 @@ RowLayout { // Prior to this change, most likely many users are still using the // normal mode configuration, so we have to enforce compact mode for // those. - if (!appSettings.compactMode) { - appSettings.compactMode = true + if (!appSettings.useCompactMode) { + appSettings.useCompactMode = true } const whitelist = profileModel.getLinkPreviewWhitelist()