class Sus::Output::Progress

def expand(amount = 1)

Increase the total size of the progress.
def expand(amount = 1)
	@total += amount
	
	@bar&.update(@current, @total, self.to_s)
	@lines&.redraw(0)
	
	return self
end