1
0
mirror of https://github.com/Toxblh/MTMR.git synced 2026-01-11 09:28:38 +00:00

A bit better for icon only button, will render without title "Button"

This commit is contained in:
Toxblh 2018-04-16 00:54:21 +01:00
parent 818c32b0ed
commit b2b495b551

View File

@ -16,6 +16,7 @@ class CustomButtonTouchBarItem: NSCustomTouchBarItem {
self.tapClosure = callback
super.init(identifier: identifier)
button = NSButton(title: title, target: self, action: #selector(didTapped))
button.title = title
self.view = button
}