diff --git a/qt/aqt/__init__.py b/qt/aqt/__init__.py index 378f058e3..5aee5ab5d 100644 --- a/qt/aqt/__init__.py +++ b/qt/aqt/__init__.py @@ -244,7 +244,7 @@ def setupLangAndBackend( anki.lang.set_lang(lang) # switch direction for RTL languages - if anki.lang.is_rtl(lang): + if anki.lang.is_rtl(lang) and not firstTime: app.setLayoutDirection(Qt.LayoutDirection.RightToLeft) else: app.setLayoutDirection(Qt.LayoutDirection.LeftToRight)