Skip to content

Commit

Permalink
NMC1992 - sharing - 2568 - Reshare message overlapping and contact ic…
Browse files Browse the repository at this point in the history
…on color in dark mode
  • Loading branch information
TSI-amrutwaghmare committed Sep 27, 2023
1 parent 0b85a3c commit e1f4e86
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion iOSClient/Share/NCShare.swift
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,6 @@ extension NCShare: CNContactPickerDelegate {
}

func contactPickerDidCancel(_ picker: CNContactPickerViewController) {
print("Cancel Contact Picker")
self.keyboardWillHide(notification: Notification(name: Notification.Name("dismiss")))
}

Expand Down
2 changes: 1 addition & 1 deletion iOSClient/Share/NCShareEmailFieldCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class NCShareEmailFieldCell: UITableViewCell {
btnContact.layer.borderWidth = 1
btnContact.layer.borderColor = NCBrandColor.shared.label.cgColor
btnContact.tintColor = NCBrandColor.shared.label
btnContact.setImage(UIImage(named: "contact"), for: .normal)
btnContact.setImage(NCUtility.shared.loadImage(named: "contact").image(color: NCBrandColor.shared.label, size: 24), for: .normal)
}

@objc func cancelDatePicker() {
Expand Down
2 changes: 1 addition & 1 deletion iOSClient/Share/NCSharePaging.swift
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ class NCShareHeaderView: UIView {
labelSharing.text = NSLocalizedString("_sharing_", comment: "")
labelSharingInfo.text = NSLocalizedString("_sharing_message_", comment: "")

if UIScreen.main.bounds.width < 350 {
if UIScreen.main.bounds.width < 376 {
constraintTopSharingLabel.constant = 15
}
}
Expand Down

0 comments on commit e1f4e86

Please sign in to comment.