Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PCigales authored Nov 23, 2024
1 parent 140c8cf commit 4d27661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GPXTweaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -14655,7 +14655,7 @@ class GPXTweakerWebInterfaceServer():
' do {\r\n' \
' dt = e.deltaY > 0 ? dt.nextElementSibling : dt.previousElementSibling;\r\n' \
' if (! dt) {return;}\r\n' \
' if (focused.indexOf("way") != dt.id.indexOf("way")) {return;}\r\n' \
' if (dt.id.indexOf("dot") < 0 || focused.indexOf("way") != dt.id.indexOf("way")) {return;}\r\n' \
' pt = document.getElementById(dt.id.replace("dot", "point"));\r\n' \
' } while (pt.hasAttribute("data-error") || pt.hasAttribute("data-deleted") || (! focused.startsWith("way") && pt.parentNode.hasAttribute("data-deleted")));\r\n' \
' element_click(null, pt);\r\n' \
Expand Down

0 comments on commit 4d27661

Please sign in to comment.