fix: hide system bars in reader by default

This commit is contained in:
rebelonion 2024-02-08 06:47:15 -06:00
parent 0b66275995
commit a38f1a2b2b
2 changed files with 2 additions and 2 deletions

View file

@ -122,7 +122,7 @@ class MangaReaderActivity : AppCompatActivity() {
}
private fun hideBars() {
if (PrefManager.getVal(PrefName.ShowSystemBars)) hideSystemBars()
if (!PrefManager.getVal<Boolean>(PrefName.ShowSystemBars)) hideSystemBars()
}
override fun onDestroy() {