From: SooChan Lim Date: Tue, 25 Aug 2020 02:48:38 +0000 (+0900) Subject: DSZone: call raiseToTop of the top window on the window list. X-Git-Tag: accepted/tizen/unified/20200827.105812~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c9aa079a6e2e56bb871e2fa3848f6677ee031cd6;p=platform%2Fcore%2Fuifw%2Flibds.git DSZone: call raiseToTop of the top window on the window list. when the window list is updated. Change-Id: I1f68de7ab6ff2002e45bb2736fb7cfdfbbdb84b4 --- diff --git a/src/DSZone/DSZone.cpp b/src/DSZone/DSZone.cpp index 9174851..3af703e 100644 --- a/src/DSZone/DSZone.cpp +++ b/src/DSZone/DSZone.cpp @@ -235,6 +235,7 @@ void DSZone::__prependWindowList(std::shared_ptr window) __updateWindowOrder(); std::shared_ptr wTop(__windowList.front()); + wTop->raiseToTop(); __windowStackChangedSignal.emit(wTop); } @@ -247,6 +248,7 @@ void DSZone::__appendWindowList(std::shared_ptr window) __updateWindowOrder(); std::shared_ptr wTop(__windowList.front()); + wTop->raiseToTop(); __windowStackChangedSignal.emit(wTop); } @@ -303,6 +305,7 @@ void DSZone::__destroyWindow(std::shared_ptr window) __updateWindowOrder(); std::shared_ptr wTop(__windowList.front()); + wTop->raiseToTop(); __windowStackChangedSignal.emit(wTop); }