Fix custom brightness turning off the screen. #106
Cette révision appartient à :
Parent
a7840bc247
révision
78314077bb
1 fichiers modifiés avec 4 ajouts et 2 suppressions
|
@ -495,13 +495,15 @@ class ReaderActivity : BaseRxActivity<ReaderPresenter>() {
|
|||
private fun setCustomBrightness(enabled: Boolean) {
|
||||
if (enabled) {
|
||||
customBrightnessSubscription = preferences.customBrightnessValue().asObservable()
|
||||
.map { Math.max(0.01f, it) }
|
||||
.subscribe { setCustomBrightnessValue(it) }
|
||||
|
||||
subscriptions.add(customBrightnessSubscription)
|
||||
} else {
|
||||
if (customBrightnessSubscription != null)
|
||||
if (customBrightnessSubscription != null) {
|
||||
subscriptions.remove(customBrightnessSubscription)
|
||||
setCustomBrightnessValue(-1f)
|
||||
}
|
||||
setCustomBrightnessValue(WindowManager.LayoutParams.BRIGHTNESS_OVERRIDE_NONE)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Référencer dans un nouveau ticket