Renamed the package.

This commit is contained in:
Michael Griebling
2023-01-18 11:42:38 -05:00
parent b4ea730033
commit c129258845
27 changed files with 10 additions and 11 deletions

View File

@@ -0,0 +1,35 @@
//
// MTLabel.swift
// MathRenderSwift
//
// Created by Mike Griebling on 2022-12-31.
//
import Foundation
import SwiftUI
#if os(macOS)
public class MTLabel : NSTextField {
init() {
super.init(frame: .zero)
self.stringValue = ""
self.isBezeled = false
self.drawsBackground = false
self.isEditable = false
self.isSelectable = false
}
required init?(coder: NSCoder) {
super.init(coder: coder)
}
var text:String? {
get { super.stringValue }
set { super.stringValue = newValue! }
}
}
#endif