mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-05-20 15:18:38 +03:00
macos: struct attributes can be private
This commit is contained in:
@ -106,9 +106,9 @@ struct AboutView: View {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private struct PropertyRow: View {
|
private struct PropertyRow: View {
|
||||||
let label: String
|
private let label: String
|
||||||
let text: String
|
private let text: String
|
||||||
let url: URL?
|
private let url: URL?
|
||||||
|
|
||||||
init(label: String, text: String, url: URL? = nil) {
|
init(label: String, text: String, url: URL? = nil) {
|
||||||
self.label = label
|
self.label = label
|
||||||
|
Reference in New Issue
Block a user