From 2f331c54dd4f4e3477a3a8784db71496c4aca8d3 Mon Sep 17 00:00:00 2001 From: Jim Evins Date: Sun, 12 Jan 2020 00:35:39 -0500 Subject: [PATCH] Fixes issue recognizing a change in barcode backend with no change in symbology. --- backends/barcode/Style.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/barcode/Style.cpp b/backends/barcode/Style.cpp index 8ac68a7..2e453dd 100644 --- a/backends/barcode/Style.cpp +++ b/backends/barcode/Style.cpp @@ -218,7 +218,7 @@ namespace glabels /// bool Style::operator!=( const Style& other ) const { - return mId != other.mId; + return (mBackendId != other.mBackendId) || (mId != other.mId); } } // namespace barcode