Merge branch 'master' into sdl2.0

Catching up with latest devel
Still things to solve/do:
Apply label seems to not work, neither in master
Onscreen keyboard size doesn't perform as in master
Test on other OSs, Windows, Android, ...
This commit is contained in:
Pere Pujal i Carabantes 2022-02-18 00:29:40 +01:00
commit b7414433cb
47 changed files with 448 additions and 967 deletions

View file

@ -877,10 +877,10 @@ static const char *locale_to_closest_locale(const char *inlocale)
}
}
/* locale must match at least three characters */
if (outlocale_score < 3)
/* locale must match at least two characters */
if (outlocale_score < 2)
{
outlocale = NULL;
outlocale = "";
}
return outlocale;