lib/frameit/editor.rb in frameit-0.1.4 vs lib/frameit/editor.rb in frameit-0.1.5

- old
+ new

@@ -13,10 +13,16 @@ end def initialize converter = FrameConverter.new - converter.run unless converter.frames_exist? + unless converter.frames_exist? + # First run + converter.run + else + # Just make sure, the PSD files are converted to PNG + converter.convert_frames + end end def run(path, color = Color::BLACK) @color = color \ No newline at end of file