mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-01-26 17:06:56 +00:00
Fix #4481
This commit is contained in:
parent
90d3c9ced0
commit
d45ce19b04
@ -2048,6 +2048,10 @@ public final class VideoDetailFragment
|
|||||||
// Apply system brightness when the player is not in fullscreen
|
// Apply system brightness when the player is not in fullscreen
|
||||||
restoreDefaultBrightness();
|
restoreDefaultBrightness();
|
||||||
} else {
|
} else {
|
||||||
|
// Do not restore if user has disabled brightness gesture
|
||||||
|
if (!PlayerHelper.isBrightnessGestureEnabled(activity)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// Restore already saved brightness level
|
// Restore already saved brightness level
|
||||||
final float brightnessLevel = PlayerHelper.getScreenBrightness(activity);
|
final float brightnessLevel = PlayerHelper.getScreenBrightness(activity);
|
||||||
if (brightnessLevel == lp.screenBrightness) {
|
if (brightnessLevel == lp.screenBrightness) {
|
||||||
|
Loading…
Reference in New Issue
Block a user