Skip to content

Commit

Permalink
small edit to the syntax for start break
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusSorealheis committed Jul 23, 2016
1 parent d2db4da commit 2382e37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tomate/Focus/FocusViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ final class FocusViewController: UIViewController {
super.viewDidLoad()

focusView.workButton.addTarget(self, action: #selector(FocusViewController.startWork(_:)), forControlEvents: .TouchUpInside)
focusView.breakButton.addTarget(self, action: #selector(FocusViewController.startBreak(_:)), forControlEvents: .TouchUpInside)
focusView.breakButton.addTarget(self, action: #selector(FocusViewController.startBreak(_:)),
forControlEvents: .TouchUpInside)
focusView.procrastinateButton.addTarget(self, action: #selector(FocusViewController.startProcrastination(_:)), forControlEvents: .TouchUpInside)
focusView.settingsButton.addTarget(self, action: #selector(FocusViewController.showSettings), forControlEvents: .TouchUpInside)
focusView.aboutButton.addTarget(self, action: #selector(FocusViewController.showAbout), forControlEvents: .TouchUpInside)
Expand Down

1 comment on commit 2382e37

@dasdom
Copy link
Owner

@dasdom dasdom commented on 2382e37 Aug 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For your information: I just made the source code public domain.

Please sign in to comment.