From 77b78c4cb86462c0706141520e3e4a1f2b7b5058 Mon Sep 17 00:00:00 2001 From: kruland2607 Date: Wed, 1 May 2013 14:37:46 -0500 Subject: [PATCH] Windspeed units wasn't being saved in the preferences. --- core/src/net/sf/openrocket/unit/UnitGroup.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/net/sf/openrocket/unit/UnitGroup.java b/core/src/net/sf/openrocket/unit/UnitGroup.java index 8c140ae98..19de190c3 100644 --- a/core/src/net/sf/openrocket/unit/UnitGroup.java +++ b/core/src/net/sf/openrocket/unit/UnitGroup.java @@ -356,6 +356,7 @@ public class UnitGroup { map.put("POWER", UNITS_POWER); map.put("MOMENTUM", UNITS_MOMENTUM); map.put("FREQUENCY", UNITS_FREQUENCY); + map.put("WINDSPEED", UNITS_WINDSPEED); UNITS = Collections.unmodifiableMap(map);