From f7da4fceb6093779e7fbe7f631cb402719da8421 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 23 Oct 2017 18:53:09 -0700 Subject: [PATCH] add 1366x768 (683:384) to functions.php no packs related to this resolution will be made, but it's there of anyone wants to scale up to this resolution --- Source/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/functions.php b/Source/functions.php index ff26fe36..88655def 100644 --- a/Source/functions.php +++ b/Source/functions.php @@ -32,6 +32,9 @@ function get_title($width, $height) { } else if ($ratio[0] == 427 && $ratio[1] == 240) { // common sense return $title; + } else if ($ratio[0] == 683 && $ratio[1] == 384) { + // common sense + return $title; } else { $title = $title . " (" . $ratio[0] .":". $ratio[1] . ")"; }