From fa43387ed812a19b8b42df8ae46a9a0029d71584 Mon Sep 17 00:00:00 2001 From: Abhishek Date: Sat, 26 Jun 2021 23:05:55 -0500 Subject: [PATCH] Cleanup! --- Clocker/Panel/UI/HourMarkerViewItem.swift | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Clocker/Panel/UI/HourMarkerViewItem.swift b/Clocker/Panel/UI/HourMarkerViewItem.swift index 253c59e..4058f17 100644 --- a/Clocker/Panel/UI/HourMarkerViewItem.swift +++ b/Clocker/Panel/UI/HourMarkerViewItem.swift @@ -18,18 +18,6 @@ class HourMarkerViewItem: NSCollectionViewItem { 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 { return false }