Skip to content

Commit

Permalink
For mozilla-mobile#16775: Fallback to light mode drawable when ui mod…
Browse files Browse the repository at this point in the history
…e is not resolved
  • Loading branch information
mcarare committed Dec 9, 2020
1 parent b4a81c2 commit 0a77f4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 0a77f4b

Please sign in to comment.