Changeset 16530 in josm
- Timestamp:
- 2020-05-31T17:09:05+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/history
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/NodeListViewer.java
r16473 r16530 44 44 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); 45 45 selectionSynchronizer.participateInSynchronizedSelection(table.getSelectionModel()); 46 table.getTableHeader().setReorderingAllowed(false); 46 47 table.addMouseListener(new InternalPopupMenuLauncher()); 47 48 table.addMouseListener(new ShowHistoryAction.DoubleClickAdapter(e -> { -
trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListViewer.java
r16473 r16530 36 36 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); 37 37 selectionSynchronizer.participateInSynchronizedSelection(table.getSelectionModel()); 38 table.getTableHeader().setReorderingAllowed(false); 38 39 table.addMouseListener(new InternalPopupMenuLauncher()); 39 40 table.getModel().addTableModelListener(e -> { -
trunk/src/org/openstreetmap/josm/gui/history/TagInfoViewer.java
r16275 r16530 66 66 table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); 67 67 selectionSynchronizer.participateInSynchronizedSelection(table.getSelectionModel()); 68 table.getTableHeader().setReorderingAllowed(false); 68 69 table.setTransferHandler(new TagInfoTransferHandler()); 69 70 table.addFocusListener(new RepaintOnFocusChange());
Note:
See TracChangeset
for help on using the changeset viewer.