diff --git a/Project308/StopWatchViewController.swift b/Project308/StopWatchViewController.swift index c6f9b47..fcfbd6e 100644 --- a/Project308/StopWatchViewController.swift +++ b/Project308/StopWatchViewController.swift @@ -69,6 +69,7 @@ class StopWatchViewController: UIViewController { * allow stopping the timer and adding a lap time. However, we need to * disable the button that starts the timer */ + clearTimesButton.isEnabled = false startButton.isEnabled = false lapButton.isEnabled = true stopButton.isEnabled = true @@ -140,6 +141,7 @@ class StopWatchViewController: UIViewController { * At this point, we'll need to enable the start button, then * disable the stop and lap buttons. */ + clearTimesButton.isEnabled = false startButton.isEnabled = true lapButton.isEnabled = false stopButton.isEnabled = false