summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyeKyoung Hwang <cookie@samsung.com>2017-04-21 15:55:47 +0900
committerHyeKyoung Hwang <cookie@samsung.com>2017-04-21 15:55:47 +0900
commit8c718767b4df7edf897f8cd86c108695402ba73c (patch)
tree001538575b18a2c9a17596556f7fbf5bf64f89c0
parentcae08de84fc4c1bce6348ba267b0465429c5af49 (diff)
downloadbrowser-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-xservices/SimpleUI/SimpleUI.cpp2
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);
}