mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 06:35:51 +00:00
Name color improvements
This commit is contained in:
@@ -339,10 +339,15 @@ public final class ChatPresentationInterfaceState: Equatable {
|
||||
}
|
||||
|
||||
public struct AccountPeerColor: Equatable {
|
||||
public var isDashed: Bool
|
||||
public enum Style {
|
||||
case solid
|
||||
case doubleDashed
|
||||
case tripleDashed
|
||||
}
|
||||
public var style: Style
|
||||
|
||||
public init(isDashed: Bool) {
|
||||
self.isDashed = isDashed
|
||||
public init(style: Style) {
|
||||
self.style = style
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user