lib/cyberarm_engine/ui/elements/progress.rb in cyberarm_engine-0.14.0 vs lib/cyberarm_engine/ui/elements/progress.rb in cyberarm_engine-0.15.0

- old
+ new

@@ -3,22 +3,22 @@ class Progress < Element def initialize(options = {}, block = nil) super(options, block) @fraction_background = Background.new(background: @style.fraction_background) - self.value = options[:fraction] ? options[:fraction] : 0.0 + self.value = options[:fraction] || 0.0 end def render @fraction_background.draw end def recalculate _width = dimensional_size(@style.width, :width) - _height= dimensional_size(@style.height,:height) + _height = dimensional_size(@style.height, :height) @width = _width - @height= _height + @height = _height update_background end def update_background @@ -42,10 +42,10 @@ @fraction = decimal.clamp(0.0, 1.0) update_background publish(:changed, @fraction) - return @fraction + @fraction end end end -end \ No newline at end of file +end