mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-11-07 09:20:08 +00:00
Fix build
This commit is contained in:
parent
98c3b67f96
commit
9a43e49289
@ -9897,8 +9897,6 @@ Sorry for the inconvenience.";
|
|||||||
"Story.ViewList.ViewerCount_any" = "%d Viewers";
|
"Story.ViewList.ViewerCount_any" = "%d Viewers";
|
||||||
|
|
||||||
"AuthSessions.MessageApp" = "You allowed this bot to message you when you opened %@.";
|
"AuthSessions.MessageApp" = "You allowed this bot to message you when you opened %@.";
|
||||||
"Notification.BotWriteAllowedMenu" = "You allowed this bot to message you when you added it to your attachment menu.";
|
|
||||||
"Notification.BotWriteAllowedRequest" = "You allowed this bot to message you in the app.";
|
|
||||||
|
|
||||||
"Story.Privacy.PostStoryAs" = "Post Story As";
|
"Story.Privacy.PostStoryAs" = "Post Story As";
|
||||||
"Story.Privacy.PostStoryAsHeader" = "POST STORY AS";
|
"Story.Privacy.PostStoryAsHeader" = "POST STORY AS";
|
||||||
|
|||||||
@ -211,6 +211,7 @@ public final class TextFieldComponent: Component {
|
|||||||
self.characterLimit = characterLimit
|
self.characterLimit = characterLimit
|
||||||
self.enableInlineAnimations = enableInlineAnimations
|
self.enableInlineAnimations = enableInlineAnimations
|
||||||
self.emptyLineHandling = emptyLineHandling
|
self.emptyLineHandling = emptyLineHandling
|
||||||
|
self.externalHandlingForMultilinePaste = externalHandlingForMultilinePaste
|
||||||
self.formatMenuAvailability = formatMenuAvailability
|
self.formatMenuAvailability = formatMenuAvailability
|
||||||
self.returnKeyType = returnKeyType
|
self.returnKeyType = returnKeyType
|
||||||
self.lockedFormatAction = lockedFormatAction
|
self.lockedFormatAction = lockedFormatAction
|
||||||
@ -272,6 +273,9 @@ public final class TextFieldComponent: Component {
|
|||||||
if lhs.emptyLineHandling != rhs.emptyLineHandling {
|
if lhs.emptyLineHandling != rhs.emptyLineHandling {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
if lhs.externalHandlingForMultilinePaste != rhs.externalHandlingForMultilinePaste {
|
||||||
|
return false
|
||||||
|
}
|
||||||
if lhs.formatMenuAvailability != rhs.formatMenuAvailability {
|
if lhs.formatMenuAvailability != rhs.formatMenuAvailability {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user