Update room input toolbar on theme change

This commit is contained in:
ismailgulek
2020-08-27 12:29:39 +03:00
parent 1f3bc37f3a
commit 1fb40073fb
2 changed files with 7 additions and 0 deletions

View File

@@ -92,6 +92,11 @@
growingTextView.tintColor = ThemeService.shared.theme.tintColor;
growingTextView.internalTextView.keyboardAppearance = ThemeService.shared.theme.keyboardAppearance;
if (growingTextView.isFirstResponder)
{
[growingTextView resignFirstResponder];
[growingTextView becomeFirstResponder];
}
self.attachMediaButton.accessibilityLabel = NSLocalizedStringFromTable(@"room_accessibility_upload", @"Vector", nil);
self.voiceCallButton.accessibilityLabel = NSLocalizedStringFromTable(@"room_accessibility_call", @"Vector", nil);