Fixed a bug with very long feed names.
This commit is contained in:
parent
47ac7bdd00
commit
d769cf0af2
|
@ -57,7 +57,7 @@ struct MasterTableViewCellLayout {
|
||||||
self.unreadCountRect = rUnread
|
self.unreadCountRect = rUnread
|
||||||
|
|
||||||
if rLabel.maxX > bounds.maxX {
|
if rLabel.maxX > bounds.maxX {
|
||||||
rLabel.size.width = bounds.maxX - rLabel.maxX
|
rLabel.size.width = bounds.maxX - rLabel.minX
|
||||||
}
|
}
|
||||||
|
|
||||||
self.titleRect = rLabel
|
self.titleRect = rLabel
|
||||||
|
|
Loading…
Reference in New Issue