aboutsummaryrefslogtreecommitdiff
path: root/src/QuickMedia.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-09-17 21:43:02 +0200
committerdec05eba <dec05eba@protonmail.com>2020-09-17 22:35:49 +0200
commit387aa042bbe89b575407240f58910e34bb7423a7 (patch)
tree4a0d6a9d9a9ba448395857ba48002662f4b08f03 /src/QuickMedia.cpp
parent017da56672c4187e5fb9b8e8f21a3d813ea034e1 (diff)
Decrease maximum size for waifu2x scaling
Diffstat (limited to 'src/QuickMedia.cpp')
-rw-r--r--src/QuickMedia.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp
index 36efb56..95a0a63 100644
--- a/src/QuickMedia.cpp
+++ b/src/QuickMedia.cpp
@@ -1982,7 +1982,7 @@ namespace QuickMedia {
int image_width, image_height;
if(image_get_resolution(image_filepath_tmp, &image_width, &image_height)) {
- if(image_height < screen_height * 0.75) {
+ if(image_height < screen_height * 0.65) {
rename_immediately = false;
CopyOp copy_op;
copy_op.source = image_filepath_tmp;