From: Kangho Hur Date: Thu, 7 May 2020 01:38:18 +0000 (+0900) Subject: [ElmSharp] Adds PeekInstance to PreloadedWindow (#1591) X-Git-Tag: submit/tizen_5.5/20200508.005347~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a839bb92db694da17e7cf4baba2f5ddac2591b8f;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [ElmSharp] Adds PeekInstance to PreloadedWindow (#1591) --- diff --git a/src/ElmSharp/ElmSharp/PreloadedWindow.cs b/src/ElmSharp/ElmSharp/PreloadedWindow.cs index 8890506ca..1975528cd 100644 --- a/src/ElmSharp/ElmSharp/PreloadedWindow.cs +++ b/src/ElmSharp/ElmSharp/PreloadedWindow.cs @@ -117,5 +117,10 @@ namespace ElmSharp s_precreated = null; return instance; } + + public static PreloadedWindow PeekInstance() + { + return s_precreated; + } } }