Fix #114801: Scene.use_audio value flipped

Regression in [0] caused the value to be flipped.

[0]: e37dc17991
This commit is contained in:
Campbell Barton
2024-01-18 11:01:13 +11:00
parent b8a340e630
commit d068407a00
2 changed files with 4 additions and 4 deletions

View File

@@ -248,7 +248,7 @@ class TIME_PT_playback(TimelinePanelButtons, Panel):
layout.prop(scene, "sync_mode", text="Sync")
col = layout.column(heading="Audio")
col.prop(scene, "use_audio_scrub", text="Scrubbing")
col.prop(scene, "use_audio", text="Mute")
col.prop(scene, "use_audio")
col = layout.column(heading="Playback")
col.prop(scene, "lock_frame_selection_to_range", text="Limit to Frame Range")