Disabled gapless playback for default
This commit is contained in:
parent
5a1503ed7b
commit
54de0bb2cc
4 changed files with 4 additions and 4 deletions
|
|
@ -133,7 +133,7 @@ public class MusicService extends Service {
|
|||
public void onReceive(Context context, Intent intent) {
|
||||
switch (intent.getAction()) {
|
||||
case SETTING_GAPLESS_PLAYBACK_CHANGED:
|
||||
setGaplessPlaybackEnabled(intent.getBooleanExtra(SETTING_BOOLEAN_EXTRA, true));
|
||||
setGaplessPlaybackEnabled(intent.getBooleanExtra(SETTING_BOOLEAN_EXTRA, false));
|
||||
break;
|
||||
case SETTING_ALBUM_ART_ON_LOCKSCREEN_CHANGED:
|
||||
updateRemoteControlClientImpl(intent.getBooleanExtra(SETTING_BOOLEAN_EXTRA, true));
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ public final class PreferenceUtils {
|
|||
}
|
||||
|
||||
public final boolean gaplessPlayback() {
|
||||
return mPreferences.getBoolean(GAPLESS_PLAYBACK, true);
|
||||
return mPreferences.getBoolean(GAPLESS_PLAYBACK, false);
|
||||
}
|
||||
|
||||
public final boolean albumArtOnLockscrenn() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue