Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/apollo/AudioFrameMouseActions.java

    r366 r1102  
    7373                        FrameMouseActions.MouseY = e.getY();
    7474                       
    75                 } else if (isSnapOn() &&
    76                                 !FreeItems.getInstance().isEmpty()) {
     75                } else if (isSnapOn() && !FreeItems.getInstance().isEmpty()) {
    7776                       
    7877                        // Couse movement of free items: Restraining left-most pixel in items
     
    222221                                       
    223222                                        if (firstInitTime == null) {
    224                                                 firstInitTime = Mutable.createMutableLong(it.value); // Important to crewate new instance
     223                                                firstInitTime = Mutable.createMutableLong(it.value); // Important to create new instance
    225224                                        } else if (it.value < firstInitTime.value) {
    226                                                 firstInitTime = Mutable.createMutableLong(it.value); // Important to crewate new instance
     225                                                firstInitTime = Mutable.createMutableLong(it.value); // Important to create new instance
    227226                                        }
    228227                                }
Note: See TracChangeset for help on using the changeset viewer.