mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-27 18:32:25 +02:00
Don't zoom to the end vertex when continuing a disconnected highway if it is already visible
Add separate fixes for continuing a disconnected highway from the start and end vertices Highlight the vertex that will be continued
This commit is contained in:
@@ -147,6 +147,16 @@ export function uiEntityIssues(context) {
|
||||
})
|
||||
.on('click', function(d) {
|
||||
d.onClick();
|
||||
})
|
||||
.on('mouseover.highlight', function(d) {
|
||||
d.entityIds.forEach(function(entityId) {
|
||||
utilHighlightEntity(entityId, true, context);
|
||||
});
|
||||
})
|
||||
.on('mouseout.highlight', function(d) {
|
||||
d.entityIds.forEach(function(entityId) {
|
||||
utilHighlightEntity(entityId, false, context);
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user