Index: trunk/src/org/openstreetmap/josm/actions/AlignInRectangleAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/AlignInRectangleAction.java	(revision 612)
+++ trunk/src/org/openstreetmap/josm/actions/AlignInRectangleAction.java	(revision 613)
@@ -41,5 +41,5 @@
 
 	public AlignInRectangleAction() {
-		super(tr("Align Nodes in Rectangle"), "aligncircle", tr("Move the selected nodes into a rectangle."), KeyEvent.VK_Q, 0, true);
+		super(tr("Align Nodes in Rectangle"), "alignrect", tr("Move the selected nodes into a rectangle."), KeyEvent.VK_Q, 0, true);
 	}
 
Index: trunk/src/org/openstreetmap/josm/gui/MapStatus.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/MapStatus.java	(revision 612)
+++ trunk/src/org/openstreetmap/josm/gui/MapStatus.java	(revision 613)
@@ -348,5 +348,5 @@
 	}
 	public void setDist(double dist) {
-		String text = dist > 1000 ? (Math.round(dist/100)/10.0)+"km" : Math.round(dist*10)/10 +"m";
+		String text = dist > 1000 ? (Math.round(dist/100)/10.0)+"km" : Math.round(dist*10)/10.0 +"m";
 		distText.setText(dist < 0 ? "--" : text);
 	}
