Start capture as soon as video control is shown

This commit is contained in:
Marco Castelluccio 2015-02-18 02:53:34 +01:00
Родитель 8ccc782463
Коммит 6c79e61bb4
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -55,11 +55,9 @@ public class ImageCapture extends MIDlet {
}
videoControl.setVisible(true);
}
}
protected void pointerReleased(int x, int y) {
new CaptureThread().start();
new CaptureThread().start();
}
}
}