IME // Extend NSRect.

This commit is contained in:
ShikiSuen 2022-09-11 10:38:27 +08:00
parent 03d38a80ed
commit 4527e6f7ba
1 changed files with 8 additions and 0 deletions

View File

@ -348,3 +348,11 @@ extension NSApplication {
return output
}
}
// MARK: NSRect Extension
extension NSRect {
public static var seniorTheBeast: NSRect {
NSRect(x: 0.0, y: 0.0, width: 0.114, height: 0.514)
}
}