Skip to content

Commit

Permalink
SetDataObject with copy false
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisFeline committed Jun 24, 2024
1 parent 37bd45e commit 4dfe055
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Models/Entry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,9 @@ public string GetTooltip(bool showPlayers, bool showTerrors)

public void CopyToClipboard()
{
Clipboard.Clear();
Clipboard.SetDataObject(Content, true, 4, 200);
// Windows 11 please... :[
// Clipboard.Clear();
Clipboard.SetDataObject(Content, false, 4, 200);
// Clipboard.SetText(Content);
}
}
Expand Down

0 comments on commit 4dfe055

Please sign in to comment.