From ccd449f3f45f34aa4022aa79341e187ecc589c09 Mon Sep 17 00:00:00 2001 From: Abhishek Date: Sat, 5 Feb 2022 19:49:42 -0500 Subject: [PATCH] Update UpcomingEventView.swift --- Clocker/Panel/Rate Controller/UpcomingEventView.swift | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Clocker/Panel/Rate Controller/UpcomingEventView.swift b/Clocker/Panel/Rate Controller/UpcomingEventView.swift index ef0233f..9c4209c 100644 --- a/Clocker/Panel/Rate Controller/UpcomingEventView.swift +++ b/Clocker/Panel/Rate Controller/UpcomingEventView.swift @@ -71,15 +71,6 @@ class ThinScroller: NSScroller { override func drawKnobSlot(in _: NSRect, highlight _: Bool) { // Leaving this empty to prevent background drawing } - - override func drawKnob() { - let knobRect = rect(for: .knob) - let knobDimensions: CGFloat = 10.0 - let newRect = NSMakeRect(knobRect.origin.x, knobRect.origin.y + 5, knobDimensions, knobDimensions) - let path = NSBezierPath(ovalIn: newRect) - NSColor.lightGray.set() - path.fill() - } } class DraggableClipView: NSClipView {