Fix issue 2141503: Keyclick sound doesn't honor volume settings.

Align sound effect volume on music volume.
main
Eric Laurent 2009-09-29 12:00:38 -07:00
parent 59faad8abd
commit 2296317b8f
1 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,8 @@ public class LatinIME extends InputMethodService
private long mVibrateDuration;
private AudioManager mAudioManager;
private final float FX_VOLUME = 1.0f;
// Align sound effect volume on music volume
private final float FX_VOLUME = -1.0f;
private boolean mSilentMode;
private String mWordSeparators;