Accomodate top/bottom only lzyout when setting screen size

This commit is contained in:
Nadia Holmquist Pedersen 2022-04-20 15:50:01 +02:00
parent 529a690089
commit ed2121d7ec

View File

@ -775,6 +775,11 @@ QSize ScreenHandler::screenGetMinSize(int factor = 1)
int w = 256 * factor;
int h = 192 * factor;
if (Config::ScreenSizing == 4 || Config::ScreenSizing == 5)
{
return QSize(w, h);
}
if (Config::ScreenLayout == 0) // natural
{
if (isHori)