Index: app/helpers/application_helper.rb =================================================================== --- app/helpers/application_helper.rb (revision 16778) +++ app/helpers/application_helper.rb (working copy) @@ -220,11 +220,12 @@ end def thumbnail_tag(attachment) + thumbnail_size = Setting.thumbnails_size.to_i link_to( image_tag( thumbnail_path(attachment), - :srcset => "#{thumbnail_path(attachment, :size => Setting.thumbnails_size.to_i * 2)} 2x", - :width => Setting.thumbnails_size + :srcset => "#{thumbnail_path(attachment, :size => thumbnail_size * 2)} 2x", + :style => "max-width: #{thumbnail_size}px; max-height: #{thumbnail_size}px;" ), named_attachment_path( attachment,