ENH: Fixed sizing of the main window. #1

Open
eroesch wants to merge 8 commits from eroesch/msg-desktop:main into main
Showing only changes of commit 1a40bf1065 - Show all commits

View file

@ -54,6 +54,7 @@ struct ContentView: View {
ForEach(lines.indices, id: \.self) { index in ForEach(lines.indices, id: \.self) { index in
Text(lines[index]) Text(lines[index])
.font(.system(.body, design: .monospaced)) .font(.system(.body, design: .monospaced))
.foregroundColor(.gray)
.frame(maxWidth: .infinity, alignment: .leading) .frame(maxWidth: .infinity, alignment: .leading)
} }