1
0
mirror of https://github.com/stonega/tsacdop synced 2025-02-04 01:17:47 +01:00

Change player default to short.

This commit is contained in:
stonegate 2020-07-31 01:25:00 +08:00
parent 16aed3eb9f
commit 4241af7ec8

View File

@ -184,7 +184,7 @@ class AudioPlayerNotifier extends ChangeNotifier {
}
Future _getPlayerHeight() async {
var index = await playerHeightStorage.getInt(defaultValue: 1);
var index = await playerHeightStorage.getInt(defaultValue: 0);
_playerHeight = PlayerHeight.values[index];
}