[fenix] For https://github.com/mozilla-mobile/fenix/issues/16775: Fallback to light mode drawable when ui mode is not resolved

pull/600/head
mcarare 4 years ago committed by Mihai Adrian Carare
parent 07366516cc
commit 9c15fe3321

@ -111,7 +111,7 @@ class DefaultToolbarIntegration(
Configuration.UI_MODE_NIGHT_YES -> {
AppCompatResources.getDrawable(context, R.drawable.shield_dark)
}
else -> null
else -> AppCompatResources.getDrawable(context, R.drawable.shield_light)
}
toolbar.display.indicators =

Loading…
Cancel
Save