mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
17 lines
355 B
Swift
17 lines
355 B
Swift
//
|
|
// LinkLabel.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Stuart Breckenridge on 26/06/2025.
|
|
// Copyright © 2025 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
|
|
class LinkLabel: NSTextField {
|
|
|
|
/// pièces de résistance -- keeping it a mac-assed mac app.
|
|
override func resetCursorRects() {
|
|
addCursorRect(bounds, cursor: .pointingHand)
|
|
}
|
|
}
|