aboutsummaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorOzoneGrif2020-02-02 21:25:17 +0100
committerGitHub2020-02-02 21:25:17 +0100
commitb68f037392f393f1d6781fdbd4f28ee4ddc79807 (patch)
tree10fffbaa494540cc7883ce3291de22ab89ded2c2 /compiler
parent31d16f6fb20eb4935fc75e83bc565070ba7e5656 (diff)
parent85f0cf2403fecfbca0d14f6fc4ebdb6aaa199b54 (diff)
downloadldgallery-b68f037392f393f1d6781fdbd4f28ee4ddc79807.tar.gz
Merge pull request #82 from pacien/feature-gallery-thumbnail-size-tweak
Feature gallery thumbnail size tweak
Diffstat (limited to 'compiler')
-rw-r--r--compiler/src/Config.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/Config.hs b/compiler/src/Config.hs
index d670aae..4c9aa40 100644
--- a/compiler/src/Config.hs
+++ b/compiler/src/Config.hs
@@ -51,7 +51,7 @@ instance FromJSON CompilerConfig where
51 <*> v .:? "includedFiles" .!= ["*"] 51 <*> v .:? "includedFiles" .!= ["*"]
52 <*> v .:? "excludedFiles" .!= [] 52 <*> v .:? "excludedFiles" .!= []
53 <*> v .:? "tagsFromDirectories" .!= 0 53 <*> v .:? "tagsFromDirectories" .!= 0
54 <*> v .:? "thumbnailMaxResolution" .!= (Resolution 400 400) 54 <*> v .:? "thumbnailMaxResolution" .!= (Resolution 400 300)
55 <*> v .:? "pictureMaxResolution" 55 <*> v .:? "pictureMaxResolution"
56 56
57 57