Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2021-10-27 22:20:05 +0300
committerGitHub <noreply@github.com>2021-10-27 22:20:05 +0300
commit5f5e605c438f840933f57fbc7597c84031a6c043 (patch)
treed322de98f4761bbd959cc727196d6e34ab815e9b /Xwt.XamMac
parent959f0cb50bf66dc3620d832f2292005a396e6c23 (diff)
Revert the lazy change
Diffstat (limited to 'Xwt.XamMac')
-rw-r--r--Xwt.XamMac/Xwt.Mac/ImageHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xwt.XamMac/Xwt.Mac/ImageHandler.cs b/Xwt.XamMac/Xwt.Mac/ImageHandler.cs
index c4f1cfc7..8ba931ac 100644
--- a/Xwt.XamMac/Xwt.Mac/ImageHandler.cs
+++ b/Xwt.XamMac/Xwt.Mac/ImageHandler.cs
@@ -56,7 +56,7 @@ namespace Xwt.Mac
public override object LoadFromFile (string file)
{
- return new NSImage (file, lazy: true);
+ return new NSImage (file);
}
public override object CreateMultiResolutionImage (IEnumerable<object> images)