From f33ea64b99eb96d50611d45a11cb21571279fccf Mon Sep 17 00:00:00 2001 From: plc-user <74435298+plc-user@users.noreply.github.com> Date: Wed, 24 Apr 2024 18:21:12 +0200 Subject: [PATCH] correct more indentations / whitespace (too many tabs) --- sources/ElementsCollection/elementscollectionmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/ElementsCollection/elementscollectionmodel.cpp b/sources/ElementsCollection/elementscollectionmodel.cpp index 679b5232a..bd66717e8 100644 --- a/sources/ElementsCollection/elementscollectionmodel.cpp +++ b/sources/ElementsCollection/elementscollectionmodel.cpp @@ -590,7 +590,7 @@ QModelIndex ElementsCollectionModel::indexFromLocation( if (eci->type() == FileElementCollectionItem::Type) { if (FileElementCollectionItem *feci = static_cast(eci)) { if ( (location.isCommonCollection() && feci->isCommonCollection()) || - (location.isCompanyCollection() && feci->isCompanyCollection()) || + (location.isCompanyCollection() && feci->isCompanyCollection()) || (location.isCustomCollection() && !feci->isCommonCollection()) ) { match_eci = feci->itemAtPath(location.collectionPath(false)); }