From bd68455c446d506c49b7b51c9d58ebf69d49a087 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 15 Jul 2020 18:23:39 +0300 Subject: [PATCH] Don't auto select if preview is disabled --- lib/redux/app/app_state.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/redux/app/app_state.dart b/lib/redux/app/app_state.dart index 650ed574a..c09d8f757 100644 --- a/lib/redux/app/app_state.dart +++ b/lib/redux/app/app_state.dart @@ -174,6 +174,7 @@ abstract class AppState implements Built { final entityUIState = getUIState(entityType); if (prefState.isMobile || + !prefState.isPreviewVisible || uiState.isEditing || entityType.isSetting || entityList.isEmpty) {