Ignore:
Timestamp:
05/19/21 09:01:33 (3 years ago)
Author:
davidb
Message:

A set of changes that spans three things: beat detection, time stretching; and a debug class motivated by the need to look at a canvas redraw issue most notable when a waveform widget is playing

File:
1 edited

Legend:

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

    r1187 r1561  
    176176        private void routeMouseEvent(MouseEvent e) {
    177177                _currentMouseEvent = e;
    178 
     178               
    179179                // First convert the point to expeditee space
    180180                Point containerPoint = SwingUtilities.convertPoint(e.getComponent(), e.getPoint(), _contentPane);
     
    218218                        // whether an expeditee item is currently picked up
    219219                        boolean forwardToExpeditee = false;
    220                         boolean isOverPopup = PopupManager.getInstance()
    221                                         .isPointOverPopup(SwingConversions.fromSwingPoint(containerPoint));
     220                        boolean isOverPopup = PopupManager.getInstance().isPointOverPopup(SwingConversions.fromSwingPoint(containerPoint));
     221                       
    222222                        if (isOverPopup) {
    223223                                // Popups have highest preference
Note: See TracChangeset for help on using the changeset viewer.