From: Kangho Hur Date: Thu, 7 May 2020 01:37:06 +0000 (+0900) Subject: [ElmSharp] Adds PeekInstance to PreloadedWindow (#1590) X-Git-Tag: submit/tizen_5.5_tv/20200508.005155~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=941a3c7ad2ebd6173109763449fc2f4d9864106a;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [ElmSharp] Adds PeekInstance to PreloadedWindow (#1590) --- diff --git a/src/ElmSharp/ElmSharp/PreloadedWindow.cs b/src/ElmSharp/ElmSharp/PreloadedWindow.cs index e4f83f4..a9211bb 100644 --- a/src/ElmSharp/ElmSharp/PreloadedWindow.cs +++ b/src/ElmSharp/ElmSharp/PreloadedWindow.cs @@ -119,5 +119,10 @@ namespace ElmSharp s_precreated = null; return instance; } + + public static PreloadedWindow PeekInstance() + { + return s_precreated; + } } }