diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-08-05 23:31:32 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-08-05 23:31:32 +0200 |
commit | 854e2be3fd20846566bc90835a90a4d736deb74f (patch) | |
tree | 75fce58badde0991602cf77390d7c8fac7e3b44c /src | |
parent | 6901e4a08ff33945330251a3e515c9520394d836 (diff) | |
download | AntennaPod-854e2be3fd20846566bc90835a90a4d736deb74f.zip |
progressIndicator wasn't always set invisible when expected
Diffstat (limited to 'src')
-rw-r--r-- | src/de/danoeh/antennapod/activity/VideoplayerActivity.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/de/danoeh/antennapod/activity/VideoplayerActivity.java b/src/de/danoeh/antennapod/activity/VideoplayerActivity.java index 87d0b3a7b..a3aca3d82 100644 --- a/src/de/danoeh/antennapod/activity/VideoplayerActivity.java +++ b/src/de/danoeh/antennapod/activity/VideoplayerActivity.java @@ -90,6 +90,8 @@ public class VideoplayerActivity extends MediaplayerActivity implements protected void postStatusMsg(int resId) { if (resId == R.string.player_preparing_msg) { progressIndicator.setVisibility(View.VISIBLE); + } else { + progressIndicator.setVisibility(View.INVISIBLE); } } |