Skip to content

Commit ddd689e

Browse files
authored
Merge pull request #2251 from nextcloud/fix/noid/share-text
fix: Adjust text sharing colors
2 parents f21fd77 + f16d366 commit ddd689e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ShareExtension/ShareConfirmationViewController.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ import MBProgressHUD
7272

7373
private lazy var sharingIndicatorView: UIActivityIndicatorView = {
7474
let indicator = UIActivityIndicatorView()
75-
indicator.color = NCAppBranding.themeTextColor()
75+
76+
if #unavailable(iOS 26.0) {
77+
indicator.color = NCAppBranding.themeTextColor()
78+
}
7679

7780
return indicator
7881
}()
@@ -207,6 +210,8 @@ import MBProgressHUD
207210
textView.font = .preferredFont(forTextStyle: .body)
208211
textView.translatesAutoresizingMaskIntoConstraints = false
209212
textView.isHidden = true
213+
textView.backgroundColor = .secondarySystemBackground
214+
textView.layer.cornerRadius = 8
210215
return textView
211216
}()
212217

0 commit comments

Comments
 (0)