Ticket #2138: DragDropFix.patch
| File DragDropFix.patch, 749 bytes (added by , 17 years ago) |
|---|
-
src/org/openstreetmap/josm/gui/GettingStarted.java
200 200 tr("Downloading \"Message of the day\"") + 201 201 "</h2>"); 202 202 JScrollPane scroller = new JScrollPane(lg); 203 Component linkGeneral = new LinkGeneral(content);204 203 scroller.setViewportBorder(new EmptyBorder(10,100,10,100)); 205 204 add(scroller, BorderLayout.CENTER); 206 205 … … 219 218 t.setDaemon(true); 220 219 t.start(); 221 220 222 new FileDrop( linkGeneral);221 new FileDrop(scroller); 223 222 } 224 223 }
