From ba53dd9b7d3b02c2e989562edc730fe973536cc5 Mon Sep 17 00:00:00 2001 From: Marcin Czachursk Date: Mon, 27 Feb 2023 08:53:24 +0100 Subject: [PATCH] Fixed size of keyboard icons. --- Vernissage/Views/ComposeView/ComposeView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vernissage/Views/ComposeView/ComposeView.swift b/Vernissage/Views/ComposeView/ComposeView.swift index fadb711..abe49fe 100644 --- a/Vernissage/Views/ComposeView/ComposeView.swift +++ b/Vernissage/Views/ComposeView/ComposeView.swift @@ -60,6 +60,7 @@ struct ComposeView: View { } private let contentWidth = Int(UIScreen.main.bounds.width) - 50 + private let keyboardFontSize = 14.0 var body: some View { NavigationStack { @@ -328,7 +329,7 @@ struct ComposeView: View { Text("\(self.applicationState.statusMaxCharacters - text.string.utf16.count)") .foregroundColor(.lightGrayColor) } - .font(.callout) + .font(.system(size: self.keyboardFontSize)) } }