Fixes issue recognizing a change in barcode backend with no change in symbology.

This commit is contained in:
Jim Evins
2020-01-12 00:35:39 -05:00
parent bcc3b2fb23
commit 2f331c54dd
+1 -1
View File
@@ -218,7 +218,7 @@ namespace glabels
/// ///
bool Style::operator!=( const Style& other ) const bool Style::operator!=( const Style& other ) const
{ {
return mId != other.mId; return (mBackendId != other.mBackendId) || (mId != other.mId);
} }
} // namespace barcode } // namespace barcode