File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/com/marginallyclever/nodegraphcore/port Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 44
55 <groupId >com.marginallyclever</groupId >
66 <artifactId >nodegraphcore</artifactId >
7- <version >1.5.5 </version >
7+ <version >1.5.6 </version >
88
99 <name >NodeGraphCore</name >
1010 <description >Flow based programming in Java.</description >
Original file line number Diff line number Diff line change @@ -169,15 +169,15 @@ public String toString() {
169169 * @return the center of the input connection point of this variable
170170 */
171171 public Point getInPosition () {
172- return new Point ((int )rectangle .getMinX (), rectangle .y +rectangle . height /2 );
172+ return new Point ((int )rectangle .getMinX (), rectangle .y +DEFAULT_HEIGHT /2 );
173173 }
174174
175175 /**
176176 * Returns the center of the output connection point of this variable
177177 * @return the center of the output connection point of this variable
178178 */
179179 public Point getOutPosition () {
180- return new Point ((int )rectangle .getMaxX (), rectangle .y +rectangle . height /2 );
180+ return new Point ((int )rectangle .getMaxX (), rectangle .y +DEFAULT_HEIGHT /2 );
181181 }
182182
183183 public JSONObject toJSON () throws JSONException {
You can’t perform that action at this time.
0 commit comments