- Timestamp:
- 2022-11-21T22:49:28+01:00 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/GettingStarted.java
r17806 r18601 62 62 + "</style>\n"; 63 63 64 /** 65 * A subclass of {@link JosmEditorPane} which replaces links with something clickable (uses {@link OpenBrowser}) 66 * @since 623 67 */ 64 68 public static class LinkGeneral extends JosmEditorPane implements HyperlinkListener { 65 69 … … 144 148 lg.getInputMap(JComponent.WHEN_FOCUSED).put(MenuItemSearchDialog.Action.SHORTCUT.getKeyStroke(), "none"); 145 149 lg.getInputMap(JComponent.WHEN_FOCUSED).put(HistoryInfoAction.SHORTCUT.getKeyStroke(), "none"); 146 lg.setTransferHandler(null); 150 // Don't use the text handler drag and drop behavior. See #13196/#20528. 151 lg.setDropTarget(null); 147 152 148 153 JScrollPane scroller = new JScrollPane(lg);
Note:
See TracChangeset
for help on using the changeset viewer.