Fixed Nabi Issues N_SE-37650,37667,37664,37657,37656,37655,37676,37651,37707,37681...
authorVinay Sachdeva <v.sachdeva@samsung.com>
Tue, 7 May 2013 16:08:46 +0000 (21:38 +0530)
committerVinay Sachdeva <v.sachdeva@samsung.com>
Tue, 7 May 2013 16:08:46 +0000 (21:38 +0530)
Change-Id: I56783c0fb120786f06bedab4bb1713e490acaa08
Signed-off-by: Vinay Sachdeva <v.sachdeva@samsung.com>
src/IntAddBookmarkForm.cpp
src/IntEditHistoryListForm.cpp
src/IntMainForm.cpp

index 68d12b6..3ba5ebc 100644 (file)
@@ -43,8 +43,8 @@ using namespace Tizen::Ui::Controls;
 using namespace Tizen::Ui::Scenes;
 
 static const int LIST_ITEM_HEIGHT = 112;
-static const int H_ITEM_HEIGHT = 128;
-static const int H_TITLE_ITEM_HEIGHT = 140;
+static const int H_ITEM_HEIGHT = 112;
+static const int H_TITLE_ITEM_HEIGHT = 128;
 static const wchar_t* IDB_LIST_LEFT_SIDE = L"ListLeftSide.png";
 
 const int AddBookmarkForm::IDA_CREATE_BOOKMARK_FOLDER = 101;
index 899989e..cad46a5 100644 (file)
@@ -204,8 +204,11 @@ EditHistoryListForm::OnActionPerformed(const Tizen::Ui::Control& source, int act
                __pSelectedLabel->SetText(selectedText);
                __pSelectedLabel->Invalidate(true);
 
-               GetFooter()->SetItemEnabled(0, true);
-               GetFooter()->Invalidate(true);
+               if(__selectedCount > 0)
+               {
+                       GetFooter()->SetItemEnabled(0, true);
+                       GetFooter()->Invalidate(true);
+               }
 
                __pListView->Invalidate(true);
 
index 9191969..638e4b9 100644 (file)
@@ -455,7 +455,7 @@ MainForm::InitWebControl()
                AppLogDebug("Initialization failed");
                return E_FAILURE;
        }
-       r = __pWebViewer->Construct(Rectangle(0, Y_WEBCONTROL_POSITION, GetClientAreaBounds().width,__webControlHeight));
+       r = __pWebViewer->Construct(Rectangle(0, Y_WEBCONTROL_POSITION, GetClientAreaBounds().width,__webControlHeight + 12));
 
        if (IsFailed(r))
        {
@@ -2659,7 +2659,7 @@ MainForm::OnLoadingCompleted(void)
        {
                return;
        }
-       if (__pWindowInfo && __pWindowInfo->faviconUrl == "")
+//     if (__pWindowInfo && __pWindowInfo->faviconUrl == "")
        {
                // temperary fixed (webpage can be not loaded)
                UpdateFavicon();
@@ -3513,7 +3513,7 @@ void MainForm::OnTextFound(int totalCount, int currentOrdinal)
 
        if(totalCount == -1 || totalCount == 0)
        {
-               __pFindWordCountLabel->SetBounds(__pFindWordCountLabel->GetX(),__pFindWordCountLabel->GetY(),64,__pFindWordCountLabel->GetHeight());
+               __pFindWordCountLabel->SetBounds(__pFindWordCountLabel->GetX(),__pFindWordCountLabel->GetY(),84,__pFindWordCountLabel->GetHeight());
                __pFindWordEditField->SetBounds(__pFindWordEditField->GetX(),__pFindWordEditField->GetY(),214+80,__pFindWordEditField->GetHeight());
 //             return;
        }