TTS timer starts even without webcam (closes #9)

This commit is contained in:
scoliono 2021-02-18 20:03:25 -08:00
parent f847abdffc
commit 4a3fdfe7f2
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
dist/
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##

View File

@ -69,6 +69,7 @@ namespace FemboyWatchdog
lastmousemvmtTimer.Tick += new EventHandler(lastmousemvmtTimer_Tick);
OpenCamera();
ttsTimer.Start();
}
private void lastmousemvmtTimer_Tick(object sender, EventArgs e)
@ -184,7 +185,6 @@ namespace FemboyWatchdog
vsp.VideoSource = source;
vsp.Start();
this.Cursor = Cursors.Default;
ttsTimer.Start();
labelBlinkTimer.Start();
}
catch { }