Skip to content
Snippets Groups Projects
Commit 06a2294d authored by LuK1337's avatar LuK1337
Browse files

Aperture: Disable lens selector sound effects when busy

We don't really want to play sound effects during video recording etc.

Change-Id: I74497f66750de33effe1095b83cbab39db6ceaf1
parent ce6be9cd
No related branches found
No related tags found
No related merge requests found
......@@ -1295,6 +1295,7 @@ open class CameraActivity : AppCompatActivity() {
*/
private fun updateSecondaryBarButtons() {
runOnUiThread {
// Top
timerButton.isEnabled = cameraState == CameraState.IDLE
aspectRatioButton.isEnabled = cameraState == CameraState.IDLE
videoQualityButton.isEnabled = cameraState == CameraState.IDLE
......@@ -1306,6 +1307,11 @@ open class CameraActivity : AppCompatActivity() {
cameraMode != CameraMode.PHOTO || cameraState == CameraState.IDLE
micButton.isEnabled = cameraState == CameraState.IDLE || audioConfig.audioEnabled
settingsButton.isEnabled = cameraState == CameraState.IDLE
// Bottom
lensSelectorLayout.children.forEach {
it.isSoundEffectsEnabled = cameraState == CameraState.IDLE
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment