Skip to content

Commit

Permalink
LibraryEditor: Fix saving of component symbol position/rotation
Browse files Browse the repository at this point in the history
Fixes #356
  • Loading branch information
ubruhin committed Oct 24, 2018
1 parent 6c6f071 commit df7b6fb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libs/librepcb/library/cmp/componentsymbolvariantitem.cpp
Expand Up @@ -108,6 +108,8 @@ bool ComponentSymbolVariantItem::operator==(
const ComponentSymbolVariantItem& rhs) const noexcept {
if (mUuid != rhs.mUuid) return false;
if (mSymbolUuid != rhs.mSymbolUuid) return false;
if (mSymbolPos != rhs.mSymbolPos) return false;
if (mSymbolRot != rhs.mSymbolRot) return false;
if (mIsRequired != rhs.mIsRequired) return false;
if (mSuffix != rhs.mSuffix) return false;
if (mPinSignalMap != rhs.mPinSignalMap) return false;
Expand Down

0 comments on commit df7b6fb

Please sign in to comment.