Skip to content

Commit

Permalink
Fixes issue recognizing a change in barcode backend with no change in…
Browse files Browse the repository at this point in the history
… symbology.
  • Loading branch information
jimevins committed Jan 12, 2020
1 parent bcc3b2f commit 2f331c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/barcode/Style.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2f331c5

Please sign in to comment.