mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
18 lines
308 B
Swift
18 lines
308 B
Swift
//
|
|
// LinkTextField.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Maurice Parker on 9/27/22.
|
|
// Copyright © 2022 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class LinkTextField: NSTextField {
|
|
|
|
override func resetCursorRects() {
|
|
addCursorRect(bounds, cursor: NSCursor.pointingHand)
|
|
}
|
|
|
|
}
|