Commit bda5b4d8

mo k <mo@mokhan.ca>
2012-08-17 16:54:54
since the thumb is now processed using the large, we should not need to recrop the thumb.
1 parent 5e598a7
Changed files (1)
app
app/uploaders/image_uploader.rb
@@ -1,5 +1,4 @@
 # encoding: utf-8
-
 class ImageUploader < CarrierWave::Uploader::Base
   include CarrierWave::RMagick
   include CarrierWave::MimeTypes
@@ -28,8 +27,7 @@ class ImageUploader < CarrierWave::Uploader::Base
     process :watermark
   end
 
-  version :thumb, :from_version => :thumb do
-    process :manualcrop
+  version :thumb, :from_version => :large do
     process :resize_to_fill => [260, 180]
   end