[github-285] Issue in XDGFShape getTxtPinX. Thanks to Dmitry Komarov. This closes #285

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895720 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-12-09 09:55:02 +00:00
parent a24820e629
commit ea1e38be74
1 changed files with 3 additions and 3 deletions

View File

@ -544,9 +544,9 @@ public class XDGFShape extends XDGFSheet {
}
public Double getTxtPinY() {
if (_txtLocPinY == null && _masterShape != null
&& _masterShape._txtLocPinY != null) {
return _masterShape._txtLocPinY;
if (_txtPinY == null && _masterShape != null
&& _masterShape._txtPinY != null) {
return _masterShape._txtPinY;
}
if (_txtPinY == null) {