#17906 closed defect (fixed)
[PATCH] When dragging and dropping relation members to the same position, they are removed
Reported by: | taylor.smock | Owned by: | taylor.smock |
---|---|---|---|
Priority: | major | Milestone: | 22.05 |
Component: | Core | Version: | tested |
Keywords: | relation member dnd drag-and-drop regression | Cc: | simon04 |
Description
Steps to reproduce:
- Get a relation with at least one member
- Drag and drop any member to the same position (black bar above the currently selected element)
- See member list decrease by one
Note: This can be done with multiple members.
This bug exists in r15224 and later (may exist earlier, I don't have enough time right now to do a binary search).
Attachments (1)
Change History (21)
comment:1 by , 6 years ago
Summary: | When dragging and dropping relations to the same position, they are removed → When dragging and dropping relation members to the same position, they are removed |
---|
comment:2 by , 6 years ago
comment:3 by , 6 years ago
Is this the same bug that sees order get screwed up when you select a bunch of elements and move them up or down?
comment:5 by , 6 years ago
Milestone: | → 19.09 |
---|---|
Owner: | changed from | to
Priority: | normal → major |
Status: | new → assigned |
comment:6 by , 6 years ago
Keywords: | member added |
---|
Bug already present in r14824 so not a recent regression.
comment:7 by , 6 years ago
Cc: | added |
---|---|
Keywords: | dnd drag-and-drop added |
Probably here since we introduced the feature in #12300
comment:8 by , 6 years ago
Owner: | changed from | to
---|---|
Status: | assigned → new |
Mmm I debugged a little bit and don't see what's wrong. Simon, do you have an idea?
comment:9 by , 6 years ago
When dropping one element at its position in the table, strangely, the selection inside addMembersAtIndexKeepingOldSelection
to both elements (the previously selected one and the inserted one). Thus, both are deleted in org.openstreetmap.josm.gui.dialogs.relation.MemberTransferHandler#exportDone
.
Not sure why the selection expands. Vincent, do you have an idea.
For debugging:
-
src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableModel.java
diff --git a/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableModel.java b/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableModel.java index a2e4084ee..57ee139e2 100644
a b 2 2 package org.openstreetmap.josm.gui.dialogs.relation; 3 3 4 4 import java.util.ArrayList; 5 import java.util.Arrays; 5 6 import java.util.BitSet; 6 7 import java.util.Collection; 7 8 import java.util.Collections; … … RelationMember getRelationMemberForPrimitive(final OsmPrimitive primitive) { 447 448 } 448 449 449 450 void addMembersAtIndexKeepingOldSelection(final Iterable<RelationMember> newMembers, final int index) { 451 System.out.println(Arrays.toString(getSelectedIndices())); 450 452 int idx = index; 451 453 for (RelationMember member : newMembers) { 452 454 members.add(idx++, member); 453 455 } 454 456 invalidateConnectionType(); 455 457 fireTableRowsInserted(index, idx - 1); 458 System.out.println(Arrays.toString(getSelectedIndices())); 456 459 } 457 460 458 461 public void addMembersAtBeginning(List<? extends OsmPrimitive> primitives) {
comment:10 by , 6 years ago
When we call fireTableRowsInserted(index, idx - 1);
we execute this code of JTable
:
/* * Invoked when rows have been inserted into the table. * <p> * Application code will not use these methods explicitly, they * are used internally by JTable. * * @param e the TableModelEvent encapsulating the insertion */ private void tableRowsInserted(TableModelEvent e) { int start = e.getFirstRow(); int end = e.getLastRow(); if (start < 0) { start = 0; } if (end < 0) { end = getRowCount()-1; } // Adjust the selection to account for the new rows. int length = end - start + 1; selectionModel.insertIndexInterval(start, length, true);
then in DefaultListSelectionModel
/** * Insert length indices beginning before/after index. If the value * at index is itself selected and the selection mode is not * SINGLE_SELECTION, set all of the newly inserted items as selected. * Otherwise leave them unselected. This method is typically * called to sync the selection model with a corresponding change * in the data model. */ public void insertIndexInterval(int index, int length, boolean before) { /* The first new index will appear at insMinIndex and the last * one will appear at insMaxIndex */ int insMinIndex = (before) ? index : index + 1; int insMaxIndex = (insMinIndex + length) - 1; /* Right shift the entire bitset by length, beginning with * index-1 if before is true, index+1 if it's false (i.e. with * insMinIndex). */ for(int i = maxIndex; i >= insMinIndex; i--) { setState(i + length, value.get(i)); // <- selection changes here }
comment:11 by , 6 years ago
Milestone: | 19.09 → 19.10 |
---|
comment:12 by , 5 years ago
Milestone: | 19.10 |
---|
comment:15 by , 3 years ago
comment:16 by , 3 years ago
Keywords: | regression added |
---|---|
Owner: | changed from | to
Status: | new → assigned |
by , 3 years ago
Attachment: | 17906.patch added |
---|
Fix deletion issue, add non-regression test, fix performance issue when moving many members
comment:17 by , 3 years ago
Milestone: | → 22.05 |
---|---|
Summary: | When dragging and dropping relation members to the same position, they are removed → [PATCH] When dragging and dropping relation members to the same position, they are removed |
Notes on attachment:17906.patch:
- Fixes #17906, #21889, see #12617 for the original issue
- #12617 was partially fixed in r9993 for single selections (but not for multiple selections). Fix was probably accidentally removed in r10604.
- Improves performance when moving large numbers of relation members (e.g., if someone decides that moving 99% of Lake Huron's members is a good idea, it won't take <some really long time> to finish the move).
I don't think we are doing a 22.04 release, but I'll merge the patch Wednesday just in case we do decide to do a 22.04 release.
comment:20 by , 3 years ago
Milestone: | 22.07 → 22.05 |
---|
confirmed