Details
-
Suggestion
-
Resolution: Done
-
P3: Somewhat important
-
1.1.x
-
None
Description
Writing code below should result in three warnings and the values not being passed to multimedia backends.
import Qt 4.7 import Qt.multimedia 1.1 Item { SoundEffect { volume: 10 // should be between 0.0 and 1.0 loops: -3 // should be -1 (infinite), 0 or positive integer } Audio { volume: 10 // should be between 0.0 and 1.0 } }