Changeset 237


Ignore:
Timestamp:
Jan 10, 2011, 6:08:56 PM (15 years ago)
Author:
dmik
Message:

jdk: Fixed Drag & Drop on OS/2 and Windows. The drag distance integer value was incorrectly set as a string (#45).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/jdk/src/windows/classes/sun/awt/windows/WDesktopProperties.java

    r2 r237  
    250250        // DnD uses one value for x and y drag diff, but Windows provides
    251251        // separate ones.  For now, just use the x value - rnk
    252         map.put("DnD.Autoscroll.cursorHysteresis", "win.drag.x");
     252        map.put("DnD.Autoscroll.cursorHysteresis", map.get("win.drag.width"));
    253253
    254254        return (Map<String, Object>) map.clone();
Note: See TracChangeset for help on using the changeset viewer.