﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
21792	[patch] Request focus in SplitWayAction window segment list	gaben	team	"When splitting a way in expert mode, a window appears for selecting the segment for history reuse. If you are not satisfied with the default selection (way with most nodes), currently you need to use the mouse to change it.

After adding this line, up/down keys will also be usable without further interaction to select the way, which speeds up editing.

{{{#!diff
Index: src/org/openstreetmap/josm/actions/SplitWayAction.java
===================================================================
--- src/org/openstreetmap/josm/actions/SplitWayAction.java	(revision 18364)
+++ src/org/openstreetmap/josm/actions/SplitWayAction.java	(working copy)
@@ -242,6 +242,7 @@
                 if (ds != null) {
                     ds.addDataSetListener(dataSetListener);
                 }
+                list.requestFocusInWindow();
             } else {
                 if (ds != null) {
                     ds.removeDataSetListener(dataSetListener);
}}}"	enhancement	closed	trivial	22.05	Core		fixed	focus	
