File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ struct SettingsView: View {
198198 TextField ( text: . init( get: {
199199 " \( Int ( settings. chatFontSize) ) "
200200 } , set: {
201- settings. chatFontSize = Double ( Int ( $0) ?? 1 )
201+ settings. chatFontSize = Double ( Int ( $0) ?? 0 )
202202 } ) ) {
203203 Text ( " Font size of chat message " )
204204 }
@@ -211,7 +211,7 @@ struct SettingsView: View {
211211 TextField ( text: . init( get: {
212212 " \( Int ( settings. chatCodeFontSize) ) "
213213 } , set: {
214- settings. chatCodeFontSize = Double ( Int ( $0) ?? 1 )
214+ settings. chatCodeFontSize = Double ( Int ( $0) ?? 0 )
215215 } ) ) {
216216 Text ( " Font size of code block in chat " )
217217 }
@@ -224,7 +224,7 @@ struct SettingsView: View {
224224 TextField ( text: . init( get: {
225225 " \( Int ( settings. suggestionCodeFontSize) ) "
226226 } , set: {
227- settings. suggestionCodeFontSize = Double ( Int ( $0) ?? 1 )
227+ settings. suggestionCodeFontSize = Double ( Int ( $0) ?? 0 )
228228 } ) ) {
229229 Text ( " Font size of suggestion code " )
230230 }
You can’t perform that action at this time.
0 commit comments