URL bar shows wrong text 84/50184/2
authorm.kawonczyk <m.kawonczyk@samsung.com>
Mon, 26 Oct 2015 14:22:22 +0000 (15:22 +0100)
committerDariusz Frankiewicz <d.frankiewic@samsung.com>
Mon, 26 Oct 2015 15:16:37 +0000 (08:16 -0700)
[Issue]        https://bugs.tizen.org/jira/browse/TT-234
[Problem]      URL bar shows wrong title
[Solution]     URL bar had correct url, however showPageTitle()
               was not called. Called this function in showUI.
[Verification] 1) Open website in a tab
               2) Type url in bar with other website address and
               click enter
               3) Click on more menu or tabs button
               4) Click on close button
               5) Do not change focus to observe problem
               Check if title shown in URL bar is correct

Change-Id: I569a50973b9bda3d934ff25617b85427581a55c4

services/WebPageUI/WebPageUI.cpp

index da61712..439a59e 100644 (file)
@@ -75,6 +75,8 @@ void WebPageUI::showUI()
 
     if (m_homePageActive)
         showQuickAccess();
+    else
+        m_URIEntry->showPageTitle();
 }