From 4dffa6f9e8f4e581ede25d4c4efd1dc44be4d843 Mon Sep 17 00:00:00 2001 From: xx Date: Wed, 29 May 2024 22:04:53 +0200 Subject: [PATCH] Fix equal comparison in BOM_PRESET Fixes #18097. --- common/settings/bom_settings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/settings/bom_settings.cpp b/common/settings/bom_settings.cpp index 252f5e36b2..43a5b5454c 100644 --- a/common/settings/bom_settings.cpp +++ b/common/settings/bom_settings.cpp @@ -112,6 +112,7 @@ bool BOM_PRESET::operator==( const BOM_PRESET& rhs ) const && this->fieldsOrdered == rhs.fieldsOrdered && this->sortField == rhs.sortField && this->sortAsc == rhs.sortAsc + && this->filterString == rhs.filterString && this->groupSymbols == rhs.groupSymbols && this->excludeDNP == rhs.excludeDNP && this->includeExcludedFromBOM == rhs.includeExcludedFromBOM;