mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-05 09:36:22 +00:00
Fixed a bug
This commit is contained in:
parent
2ba649949f
commit
759a9080a8
@ -197,11 +197,12 @@ class MainPlayerGestureListener(
|
||||
val isBrightnessGestureEnabled = PlayerHelper.isBrightnessGestureEnabled(player.context)
|
||||
val isVolumeGestureEnabled = PlayerHelper.isVolumeGestureEnabled(player.context)
|
||||
val brightnessSide = if (PreferenceManager.getDefaultSharedPreferences(player.context)
|
||||
.getBoolean(R.string.switch_gesture_sides_key.toString(), false)
|
||||
) DisplayPortion.RIGHT_HALF
|
||||
.getBoolean(
|
||||
player.context.getString(R.string.switch_gesture_sides_key), false))
|
||||
DisplayPortion.RIGHT_HALF
|
||||
else DisplayPortion.LEFT_HALF
|
||||
if (isBrightnessGestureEnabled && isVolumeGestureEnabled) {
|
||||
if (getDisplayHalfPortion(initialEvent) === brightnessSide) {
|
||||
if (getDisplayHalfPortion(initialEvent) == brightnessSide) {
|
||||
onScrollBrightness(distanceY)
|
||||
} else /* DisplayPortion.RIGHT_HALF */ {
|
||||
onScrollVolume(distanceY)
|
||||
|
Loading…
Reference in New Issue
Block a user