Change player default to short.

This commit is contained in:
stonegate 2020-07-31 01:25:00 +08:00
parent 16aed3eb9f
commit 4241af7ec8
1 changed files with 1 additions and 1 deletions

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];
}