diff options
author | HyeKyoung Hwang <cookie@samsung.com> | 2017-04-21 15:55:47 +0900 |
---|---|---|
committer | HyeKyoung Hwang <cookie@samsung.com> | 2017-04-21 15:55:47 +0900 |
commit | 8c718767b4df7edf897f8cd86c108695402ba73c (patch) | |
tree | 001538575b18a2c9a17596556f7fbf5bf64f89c0 | |
parent | cae08de84fc4c1bce6348ba267b0465429c5af49 (diff) | |
download | browser-8c718767b4df7edf897f8cd86c108695402ba73c.tar.gz browser-8c718767b4df7edf897f8cd86c108695402ba73c.tar.bz2 browser-8c718767b4df7edf897f8cd86c108695402ba73c.zip |
When the browser is lauch with URL, Browser can't lauch to it.
[Problem]http://suprem.sec.samsung.net/jira/browse/RWASP-1011
[Cause] Browser can't give the url to new tab
Change-Id: Idab13ad17088f82ba80dbaf0efef932304bfb420
Signed-off-by: HyeKyoung Hwang <cookie@samsung.com>
-rwxr-xr-x | services/SimpleUI/SimpleUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/SimpleUI/SimpleUI.cpp b/services/SimpleUI/SimpleUI.cpp index 15d4f96..bfc167d 100755 --- a/services/SimpleUI/SimpleUI.cpp +++ b/services/SimpleUI/SimpleUI.cpp @@ -283,7 +283,7 @@ int SimpleUI::exec(const std::string& url, const std::string& caller, const std: newUrl = m_webPageUI->getURIEntry().rewriteURI(url); popStackTo(m_webPageUI); } - if (m_splash_screen.isVisible()) { + if ((!caller.compare("org.tizen.browser") || m_splash_screen.isVisible() )) { auto taburl = pwaUrl.empty() ? newUrl : pwaUrl; openNewTab(taburl); } |