Skip to content

Commit

Permalink
SeekBarPreference: ensure that the base class is called in onBindDial…
Browse files Browse the repository at this point in the history
…ogView.
  • Loading branch information
rhdunn committed May 4, 2013
1 parent ee049e7 commit 8d6465d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions android/src/com/reecedunn/espeak/SeekBarPreference.java
Expand Up @@ -116,6 +116,7 @@ public void onClick(View v)

@Override
protected void onBindDialogView(View view) {
super.onBindDialogView(view);
mSeekBar.setOnSeekBarChangeListener(this);
mSeekBar.setMax(mMax - mMin);
mSeekBar.setProgress(mProgress - mMin);
Expand Down

0 comments on commit 8d6465d

Please sign in to comment.