You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
346 B
16 lines
346 B
6 years ago
|
// Copyright © 2015 Abhishek Banthia
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
3 years ago
|
class PointingHandCursorButton: NSButton {
|
||
3 years ago
|
let pointingHandCursor: NSCursor = NSCursor.pointingHand
|
||
6 years ago
|
|
||
|
override func draw(_ dirtyRect: NSRect) {
|
||
|
super.draw(dirtyRect)
|
||
|
}
|
||
|
|
||
|
override func resetCursorRects() {
|
||
3 years ago
|
addCursorRect(bounds, cursor: pointingHandCursor)
|
||
6 years ago
|
}
|
||
|
}
|