summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/settings/profiles')
-rw-r--r--src/com/android/settings/profiles/SetupActionsFragment.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/settings/profiles/SetupActionsFragment.java b/src/com/android/settings/profiles/SetupActionsFragment.java
index c7c9680..d303d45 100644
--- a/src/com/android/settings/profiles/SetupActionsFragment.java
+++ b/src/com/android/settings/profiles/SetupActionsFragment.java
@@ -774,10 +774,12 @@ public class SetupActionsFragment extends SettingsPreferenceFragment
seekBar.setEnabled(isChecked);
}
});
- seekBar.setEnabled(streamSettings.isOverride());
final SeekBarVolumizer volumizer = new SeekBarVolumizer(getActivity(), streamId, null,
null);
+ volumizer.start();
volumizer.setSeekBar(seekBar);
+ seekBar.setEnabled(streamSettings.isOverride());
+
builder.setView(view);
builder.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override