Skip to content

Commit

Permalink
Fix formatting;
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronwhite committed Dec 27, 2023
1 parent e600d95 commit 7fd087b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Pinta.Core/Classes/Re-editable/Text/TextEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -350,11 +350,11 @@ public async Task<bool> PerformPaste (Gdk.Clipboard clipboard)
{
string? txt;
try {
txt = await clipboard.ReadTextAsync ();
txt = await clipboard.ReadTextAsync ();
} catch (GLib.GException) {
// The clipboard probably contained an image.
return false;
}
}

if (string.IsNullOrEmpty (txt))
return false;
Expand Down

0 comments on commit 7fd087b

Please sign in to comment.