mirror of https://github.com/apache/poi.git
[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:
parent
a24820e629
commit
ea1e38be74
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue