﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
18248	raise maximum simplify-way.max-error	Klumbumbus	Bjoeni	"r15419 added a maximum value for `simplify-way.max-error` which is 100.
I suggest to raise it to 10000, because e.g. to simplify the shapes for wiki:/Maps/Croatia?action=diff&version=15 (where one had 3338! nodes) I needed a `simplify-way.max-error` of 2000. I did it this way:


{{{
#!diff
--- SimplifyWayAction.java	(Revision 15466)
+++ SimplifyWayAction.java	(Arbeitskopie)
@@ -133,7 +133,7 @@
         JPanel q = new JPanel(new GridBagLayout());
         q.add(new JLabel(tr(""Maximum error (meters): "")));
         JSpinner n = new JSpinner(new SpinnerNumberModel(
-                s.getDouble(keyError, 3.0), 0.01, 100, 0.5));
+                s.getDouble(keyError, 3.0), 0.01, 10000, 0.5));
         q.add(n);
         q.setBorder(BorderFactory.createEmptyBorder(14, 0, 10, 0));
         p.add(q, GBC.eol());
}}}

and noticed no problems. Was there a reason for the 100 limit?
One open point with this change is when you type values >10000 it corrects them to 100 instead to 10000, I don't know where to fix that.

Another thing is if you add a larger `simplify-way.max-error` value directly in the preferences you get an exception. Not sure if that should be catched.
"	defect	new	normal	19.10	Core				
