File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ The changelog for `MessageKit`. Also see the [releases](https://github.com/Messa
66
77## Upcoming release
88
9+ ### Fixed
10+
11+ - Fixed ` LabelAlignment ` initializer which has default internal access control.
12+ [ #705 ] ( https://github.com/MessageKit/MessageKit/pull/705 ) by [ @zhongwuzw ] ( https://github.com/zhongwuzw ) .
13+
914## [[ Prerelease] 1.0.0-beta.1] ( https://github.com/MessageKit/MessageKit/releases/tag/1.0.0-beta.1 )
1015
1116### Added
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ public struct LabelAlignment {
2828
2929 public var textAlignment : NSTextAlignment
3030 public var textInsets : UIEdgeInsets
31+
32+ public init ( textAlignment: NSTextAlignment , textInsets: UIEdgeInsets ) {
33+ self . textAlignment = textAlignment
34+ self . textInsets = textInsets
35+ }
3136
3237}
3338
You can’t perform that action at this time.
0 commit comments