Fixes to white background sometimes in auto dark mode

pull/2497/head
Jay 5 years ago
parent 4ac4923d15
commit 5874a4d2df

@ -93,7 +93,8 @@ object ImageUtil {
topLeftIsDark -> image.getPixel(left, top)
topRightIsDark -> image.getPixel(right, top)
botLeftIsDark -> image.getPixel(left, bot)
else -> image.getPixel(right, bot)
botRightIsDark -> image.getPixel(right, bot)
else -> android.R.attr.colorBackground
}
var overallWhitePixels = 0

Loading…
Cancel
Save