1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-11-25 19:44:50 +00:00

removed resizig text from popup player, as requested in #5514

This commit is contained in:
karol
2021-02-11 11:20:27 +01:00
parent b9cd55188e
commit 156d7139fa
4 changed files with 0 additions and 38 deletions

View File

@@ -4049,10 +4049,6 @@ public final class Player implements
return binding.currentDisplaySeek;
}
public TextView getResizingIndicator() {
return binding.resizingIndicator;
}
@Nullable
public WindowManager.LayoutParams getPopupLayoutParams() {
return popupLayoutParams;

View File

@@ -251,7 +251,6 @@ public class PlayerGestureListener
player.hideControls(0, 0);
animate(player.getCurrentDisplaySeek(), false, 0, ALPHA, 0);
animate(player.getResizingIndicator(), true, 200, ALPHA, 0);
}
@Override
@@ -259,7 +258,6 @@ public class PlayerGestureListener
if (DEBUG) {
Log.d(TAG, "onPopupResizingEnd called");
}
animate(player.getResizingIndicator(), false, 100, ALPHA, 0);
}
}