summaryrefslogtreecommitdiff
path: root/app/photos/forms.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2016-11-01 14:42:20 -0400
committerluxagraf <sng@luxagraf.net>2016-11-01 14:42:20 -0400
commit541a4616c06449311cae1a793fef11bfa1ca7ace (patch)
tree498404416935822a09de181d6c82f24d79916468 /app/photos/forms.py
parentd061b4393663ddf81c281f51fef63b5d11beb0df (diff)
widened site, created new photo layouts and prepped homepage redesign
Diffstat (limited to 'app/photos/forms.py')
-rw-r--r--app/photos/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/photos/forms.py b/app/photos/forms.py
index 4e00189..06e829d 100644
--- a/app/photos/forms.py
+++ b/app/photos/forms.py
@@ -151,7 +151,7 @@ class UploadZipForm(forms.Form):
if file_extension != ".mp4":
img = Image.open(image.image.path)
if img.size[0] > img.size[1]:
- image.sizes.add(LuxImageSize.objects.get(width=2280))
+ image.sizes.add(LuxImageSize.objects.get(width=2560))
image.sizes.add(LuxImageSize.objects.get(width=1140))
image.sizes.add(LuxImageSize.objects.get(width=720))
if img.size[1] > img.size[0]: