mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
Merge pull request #1164 from mitchellh/macos-about-select
macos: text in about window is selectable
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 242 KiB |
Binary file not shown.
Before Width: | Height: | Size: 242 KiB |
Binary file not shown.
Before Width: | Height: | Size: 242 KiB |
@ -1,17 +1,17 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "199110421-9ff5fc30-a244-441e-9882-26070662adf9.png",
|
||||
"filename" : "icon_128x128.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "199110421-9ff5fc30-a244-441e-9882-26070662adf9 1.png",
|
||||
"filename" : "icon_128x128@2x@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "199110421-9ff5fc30-a244-441e-9882-26070662adf9 2.png",
|
||||
"filename" : "icon_256x256@2x@2x.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
|
BIN
macos/Assets.xcassets/AppIconImage.imageset/icon_128x128.png
vendored
Normal file
BIN
macos/Assets.xcassets/AppIconImage.imageset/icon_128x128.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.8 KiB |
BIN
macos/Assets.xcassets/AppIconImage.imageset/icon_128x128@2x@2x.png
vendored
Normal file
BIN
macos/Assets.xcassets/AppIconImage.imageset/icon_128x128@2x@2x.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
macos/Assets.xcassets/AppIconImage.imageset/icon_256x256@2x@2x.png
vendored
Normal file
BIN
macos/Assets.xcassets/AppIconImage.imageset/icon_256x256@2x@2x.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
@ -15,10 +15,12 @@ struct AboutView: View {
|
||||
|
||||
Text("Ghostty")
|
||||
.font(.title3)
|
||||
.textSelection(.enabled)
|
||||
|
||||
if let version = self.version {
|
||||
Text("Version: \(version)")
|
||||
.font(.body)
|
||||
.textSelection(.enabled)
|
||||
}
|
||||
}
|
||||
.frame(minWidth: 300)
|
||||
|
Reference in New Issue
Block a user