Browse Source

Fix make_sprue unit_conversion FROM mm to other. (#260)

Before, val_mm resulted in nil which broke execution in evaluation of
division operation ("/").

Fixes #259.
dev
Felix Wolfsteller 7 years ago committed by Andy Meneely
parent
commit
a6675b2e60
  1. 2
      lib/squib/commands/make_sprue.rb

2
lib/squib/commands/make_sprue.rb

@ -156,6 +156,8 @@ module Squib
val_mm = val * 25.4
elsif from_unit == :cm
val_mm = val * 10.0
else
val_mm = val
end
if to_unit == :in

Loading…
Cancel
Save