Skip to content

Commit

Permalink
Fix seek on TV
Browse files Browse the repository at this point in the history
  • Loading branch information
moneytoo committed Jun 30, 2022
1 parent 7dce923 commit 866b3a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.brouken.player"
minSdkVersion 21
targetSdkVersion 33
versionCode 118
versionName "0.118"
versionCode 119
versionName "0.119"
archivesBaseName = "Just.Player.v${versionName}"
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/brouken/player/PlayerActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ public boolean dispatchKeyEvent(KeyEvent event) {
return true;
}

if (isTvBox && controllerVisible && !controllerVisibleFully) {
if (isTvBox && !controllerVisibleFully) {
if (event.getAction() == KeyEvent.ACTION_DOWN) {
onKeyDown(event.getKeyCode(), event);
} else if (event.getAction() == KeyEvent.ACTION_UP) {
Expand Down

0 comments on commit 866b3a0

Please sign in to comment.