Sequencer: allow scene volume above 1

This commit is contained in:
Campbell Barton 2015-02-21 00:08:27 +11:00
parent de4dcda545
commit d12eba61a5

@ -5917,7 +5917,7 @@ void RNA_def_scene(BlenderRNA *brna)
prop = RNA_def_property(srna, "audio_volume", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "audio.volume");
RNA_def_property_range(prop, 0.0f, 1.0f);
RNA_def_property_range(prop, 0.0f, 100.0f);
RNA_def_property_ui_text(prop, "Volume", "Audio volume");
RNA_def_property_translation_context(prop, BLF_I18NCONTEXT_ID_SOUND);
RNA_def_property_update(prop, NC_SCENE, NULL);