From b40171b74ee218aa6fc5b107b0ba5f4c06128ae3 Mon Sep 17 00:00:00 2001 From: q3aql Date: Tue, 23 Mar 2021 16:05:01 +0100 Subject: [PATCH] Fix bad crop on 1080 height size (ks-crop) --- src/ks-crop | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ks-crop b/src/ks-crop index df8cf97..a46ce5c 100755 --- a/src/ks-crop +++ b/src/ks-crop @@ -178,7 +178,7 @@ if [ ${resolution_first} == "2048" ] ; then ih_size="380" fi if [ ${resolution_first} == "1920" ] ; then - ih_size="360" + ih_size="270" fi if [ ${resolution_first} == "1680" ] ; then ih_size="250" @@ -240,7 +240,7 @@ if [ ${resolution_second} == "1200" ] ; then ih_size="300" fi if [ ${resolution_second} == "1080" ] ; then - ih_size="360" + ih_size="270" fi if [ ${resolution_second} == "1050" ] ; then ih_size="250" @@ -323,7 +323,7 @@ if [ ${resolution_detected} == "1920x1540" ] ; then ih_size="380" fi if [ ${resolution_detected} == "1920x1080" ] ; then - ih_size="360" + ih_size="270" fi if [ ${resolution_detected} == "1920x1040" ] ; then ih_size="260"