Skip to content

Commit

Permalink
Make DataLength setter private
Browse files Browse the repository at this point in the history
  • Loading branch information
Susko3 committed May 9, 2024
1 parent 418c023 commit 16bf604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Framework/Platform/SDL/SDL3Clipboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ private class ClipboardCallbackContext : IDisposable
/// <summary>
/// Length of the <see cref="ReadOnlyMemory{T}"/> returned by the <see cref="dataProvider"/>.
/// </summary>
public UIntPtr DataLength;
public UIntPtr DataLength { get; private set; }

public ClipboardCallbackContext(string mimeType, Func<ReadOnlyMemory<byte>> dataProvider)
{
Expand Down

0 comments on commit 16bf604

Please sign in to comment.