Skip to content

Commit

Permalink
Merge pull request #40 from wrightjjw/master
Browse files Browse the repository at this point in the history
fixed Rectangle::setHeight()
  • Loading branch information
RyanVreeke authored Jul 1, 2021
2 parents 1a7ae36 + 5fa3605 commit 3c5e622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TSGL/Rectangle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void Rectangle::setHeight(GLfloat height) {
return;
}
attribMutex.lock();
myWidth = height;
myHeight = height;
myYScale = height;
attribMutex.unlock();
}
Expand Down

0 comments on commit 3c5e622

Please sign in to comment.