Fixes issue recognizing a change in barcode backend with no change in symbology.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user