Browse Source

Cleanup!

pull/101/head
Abhishek 4 years ago
parent
commit
fa43387ed8
  1. 12
      Clocker/Panel/UI/HourMarkerViewItem.swift

12
Clocker/Panel/UI/HourMarkerViewItem.swift

@ -18,18 +18,6 @@ class HourMarkerViewItem: NSCollectionViewItem {
verticalLineView.layer?.backgroundColor = NSColor.lightGray.cgColor verticalLineView.layer?.backgroundColor = NSColor.lightGray.cgColor
} }
func setupLineColor() {
for subview in view.subviews where subview is NSBox {
subview.layer?.backgroundColor = NSColor.black.cgColor
}
}
func resetLineColor() {
for subview in view.subviews where subview is NSBox {
subview.layer?.backgroundColor = nil
}
}
override var acceptsFirstResponder: Bool { override var acceptsFirstResponder: Bool {
return false return false
} }

Loading…
Cancel
Save