Comment typo

This commit is contained in:
Xavi Artigas 2012-10-30 18:16:57 +01:00
parent 06092ab217
commit df3c6e3d3e

View file

@ -230,7 +230,7 @@ public class Tutorial4 extends Activity implements SurfaceHolder.Callback, OnSee
public void onProgressChanged(SeekBar sb, int progress, boolean fromUser) {
if (fromUser == false) return;
desired_position = progress;
// If this is a local file, allow scrub seeking, this is, seek soon as the slider is moved.
// If this is a local file, allow scrub seeking, this is, seek as soon as the slider is moved.
if (is_local_media) nativeSetPosition(desired_position);
updateTimeWidget();
}