mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
Fix landing screen clipping bug
This commit is contained in:
parent
9ffe36a091
commit
3bcad97629
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ public final class Values : NSObject {
|
|||
@objc public static let modalButtonCornerRadius = CGFloat(5)
|
||||
@objc public static let fakeChatBubbleWidth = CGFloat(224)
|
||||
@objc public static let fakeChatBubbleCornerRadius = CGFloat(10)
|
||||
@objc public static let fakeChatViewHeight = CGFloat(234)
|
||||
@objc public static let fakeChatViewHeight = isSmallScreen ? CGFloat(234) : CGFloat(260)
|
||||
@objc public static let composeViewTextFieldBorderThickness = 1 / UIScreen.main.scale
|
||||
@objc public static let messageBubbleCornerRadius: CGFloat = 10
|
||||
@objc public static let progressBarThickness: CGFloat = 2
|
||||
|
|
|
@ -13,7 +13,7 @@ public enum GroupUtilities {
|
|||
let storage = OWSPrimaryStorage.shared()
|
||||
let userHexEncodedPublicKey = getUserHexEncodedPublicKey()
|
||||
return closedGroup.groupModel.groupMemberIds.filter { member in
|
||||
// Don't show any slave devices
|
||||
// Don't show slave devices
|
||||
return storage.getMasterHexEncodedPublicKey(for: member, in: transaction) == nil
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue