﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1404	tagged nodes not diferentiated since 768	anonymous	framm	"in rev. 768 some mappaint changes were submitted. Unfortunately, the functionality, where without mappaint, tagged nodes are drawn larger have disappeared

The code:
243	 	        if (n.tagged) { 
244	 	            g.drawRect(p.x, p.y, 0, 0); 
245	 	            g.drawRect(p.x-2, p.y-2, 4, 4); 
246	 	        } else { 
247	 	            g.drawRect(p.x-1, p.y-1, 2, 2); 
248	 	        } 

was replaced with another, that ignores whether the node is tagged or not.

I think the new code:

278	                        if (fill) 
279	                               g.fillRect(p.x - radius, p.y - radius, size, size); 
280	                        else 
281	                               g.drawRect(p.x - radius, p.y - radius, size, size); 
282	               } 

could be replaced by code, that will double the radius if the node is tagged.

Now it is very hard to spot tagged nodes."	defect	closed	major		Core	latest	fixed		
