From 5ab13d3f0d7f6c6bcfcf4e2b1cc88751dd9409df Mon Sep 17 00:00:00 2001 From: arosis78 <35049857+arosis78@users.noreply.github.com> Date: Thu, 18 Oct 2018 16:42:23 +0900 Subject: [PATCH] [ElmSharp] Fix typo (#518) --- src/ElmSharp/ElmSharp/Window.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ElmSharp/ElmSharp/Window.cs b/src/ElmSharp/ElmSharp/Window.cs index c716671..af41d00 100755 --- a/src/ElmSharp/ElmSharp/Window.cs +++ b/src/ElmSharp/ElmSharp/Window.cs @@ -940,11 +940,11 @@ namespace ElmSharp { get { - return Interop.Elementary.elm_win_urgent_get(Handle); + return Interop.Elementary.elm_win_withdrawn_get(Handle); } set { - Interop.Elementary.elm_win_urgent_set(Handle, value); + Interop.Elementary.elm_win_withdrawn_set(Handle, value); } } @@ -1144,4 +1144,4 @@ namespace ElmSharp return (DisplayRotation)orientation; } } -} \ No newline at end of file +} -- 2.7.4