Skip to content

Commit

Permalink
Address reviews and fix some failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
mandel-macaque committed Oct 19, 2023
1 parent a70b65a commit bbc0e6c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Foundation/NSAttributedStringDocumentAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,10 @@ public NSUrl? ReadAccessUrl {
#if NET
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("ios13.0")]
[SupportedOSPlatform ("maccatalyst13.1")]
[SupportedOSPlatform ("maccatalyst")]
[UnsupportedOSPlatform ("tvos")]
#else
[Mac (10, 15), iOS (13, 0), MacCatalyst (13, 1), NoTV, NoWatch]
[Mac (10, 15), iOS (13, 0), NoTV, NoWatch]
#endif
public string? DocumentReading {
get {
Expand Down
5 changes: 5 additions & 0 deletions src/appkit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28145,6 +28145,11 @@ interface NSNibControlConnector {
[NoMacCatalyst, Mac (14, 0)]
[BaseType (typeof (NSView))]
interface NSTextInsertionIndicator {

[DesignatedInitializer]
[Export ("initWithFrame:")]
NativeHandle Constructor (CGRect frameRect);

[Export ("displayMode", ArgumentSemantic.Assign)]
NSTextInsertionIndicatorDisplayMode DisplayMode { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion src/xkit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4443,7 +4443,7 @@ interface NSAttributedStringDocumentReadingOptionKey {

// comres from webkit
[Mac (10, 15), iOS (13, 0), MacCatalyst (13, 1), NoTV, NoWatch]
[Field ("NSReadAccessURLDocumentOption")]
[Field ("NSReadAccessURLDocumentOption", "WebKit")]
NSString NSReadAccessUrlDocumentOption { get; }

}
Expand Down

6 comments on commit bbc0e6c

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

Please sign in to comment.