[kit] Set target on menu items -- no action yet

This commit is contained in:
Eryn Wells 2017-08-13 09:44:04 -07:00
parent 3accaef16e
commit e7e168ba79

View file

@ -31,7 +31,9 @@ class PreferencesViewController: NSViewController {
let menu = NSMenu()
for item in PreferencesViewController.styleItems {
// TODO: Set action here.
let menuItem = NSMenuItem(title: item.name, action: nil, keyEquivalent: "")
menuItem.target = self
menuItem.tag = item.tag
menu.addItem(menuItem)
}