GUI: RTL: Enable RTL by default for Hebrew

This commit is contained in:
aryanrawlani28 2020-06-04 01:42:56 +05:30 committed by Eugene Sandulenko
parent 6211747fd3
commit 54279790b7

View File

@ -668,7 +668,7 @@ void GuiManager::setLanguageRTL() {
}
#ifdef USE_TRANSLATION
Common::String language = TransMan.getCurrentLanguage();
if (language.equals("C") && false) { // GUI TODO: Remove false condition to enable RTL
if (language.equals("he")) { // GUI TODO: modify when we'll support other RTL languages, such as Arabic and Farsi
_useRTL = true;
return;
}