Ignore:
Timestamp:
09/18/18 11:57:32 (6 years ago)
Author:
bln4
Message:

Used Eclipse refactoring to encapsulate Point.X and Point.Y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gio/DragAndDropManager.java

    r1097 r1142  
    109109
    110110                        if (lastItem == null) {
    111                                 currentPoint.y += 30;
     111                                currentPoint.setY(currentPoint.getY() + 30);
    112112                        } else {
    113                                 currentPoint.y += lastItem.getBoundsHeight();
     113                                currentPoint.setY(currentPoint.getY() + lastItem.getBoundsHeight());
    114114                        }
    115115                        // of the item that was created
Note: See TracChangeset for help on using the changeset viewer.