Files
clawdbot/apps/macos/Sources/Clawdbot/NSAttributedString+VoiceWake.swift
2026-01-04 14:38:51 +00:00

10 lines
316 B
Swift

import Foundation
extension NSAttributedString {
func strippingForegroundColor() -> NSAttributedString {
let mutable = NSMutableAttributedString(attributedString: self)
mutable.removeAttribute(.foregroundColor, range: NSRange(location: 0, length: mutable.length))
return mutable
}
}