[Applications] Fix wrong implementation of AttachWindowBelow method (#3384)
authorhjhun <36876573+hjhun@users.noreply.github.com>
Thu, 5 Aug 2021 09:43:25 +0000 (18:43 +0900)
committerGitHub <noreply@github.com>
Thu, 5 Aug 2021 09:43:25 +0000 (18:43 +0900)
The AttachWindowBelow() method has to use AppManagerAttachWindowBelow().

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/Tizen.Applications.Common/Tizen.Applications/ApplicationManager.cs

index 0cca1ff..2df8785 100755 (executable)
@@ -676,7 +676,7 @@ namespace Tizen.Applications
         {
             Interop.ApplicationManager.ErrorCode err = Interop.ApplicationManager.ErrorCode.None;
 
-            err = Interop.ApplicationManager.AppManagerAttachWindow(parentAppId, childAppId);
+            err = Interop.ApplicationManager.AppManagerAttachWindowBelow(parentAppId, childAppId);
             if (err != Interop.ApplicationManager.ErrorCode.None)
             {
                 switch (err)