uix.camera: call start() instead of play() on underlying camera device.

This commit is contained in:
Joakim Gebart 2011-05-19 08:54:39 +02:00
parent 87059892f3
commit 567b4c7a84
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ class Camera(Image):
if not self._camera:
return
if value:
self._camera.play()
self._camera.start()
else:
self._camera.stop()