BogaudioModules

BogaudioModules for VCV Rack
Log | Files | Refs | README | LICENSE

commit 33a049f057126dd1d3cbb65c0cab75a1f6d63606
parent c96c5b7e1f2645b614b261913936cd22fd45e3e7
Author: Matt Demanett <matt@demanett.net>
Date:   Wed,  3 Jan 2018 01:45:19 -0500

Fix output typo.

Diffstat:
Mscripts/svg_widgets.rb | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/svg_widgets.rb b/scripts/svg_widgets.rb @@ -150,7 +150,7 @@ exit unless lines =~ /_(PARAM|INPUT|OUTPUT|LIGHT)/ Widget = Struct.new(:id, :x, :y, :width, :height) do def to_s - "#{id} x=#{x} y=#{y} width=#{width} x=#{height}" + "#{id} x=#{x} y=#{y} width=#{width} height=#{height}" end end widgets_by_type = {}