fixed bug/prevent
authorChulheon <ch.jeong47@samsung.com>
Sat, 13 Apr 2013 08:58:29 +0000 (17:58 +0900)
committerChulheon <ch.jeong47@samsung.com>
Sat, 13 Apr 2013 08:58:29 +0000 (17:58 +0900)
Change-Id: Ic58f7970304ab788a81dc5e9c22aebcbc083e4c1

src/ui/controls/FUiCtrl_EditCopyPasteManager.cpp
src/ui/controls/FUiCtrl_Keypad.cpp

index fe31dec..76bab6c 100755 (executable)
@@ -1668,7 +1668,10 @@ _EditCopyPasteManager::CreateCopyPastePopup(void)
                editShowAreaAbsRect.x += textObjectBounds.x;
                editShowAreaAbsRect.y += textObjectBounds.y;
                editShowAreaAbsRect.width = textObjectBounds.width;
-               editShowAreaAbsRect.height = textObjectBounds.height;
+               if (!(__pEdit->GetEditStyle() & EDIT_STYLE_SINGLE_LINE))
+               {
+                       editShowAreaAbsRect.height = textObjectBounds.height;
+               }
 
                if (commandButtonExist)
                {
index 53946ee..c8d90b6 100644 (file)
@@ -555,14 +555,7 @@ _Keypad::ChangeLayoutInternal(LayoutChangeState layoutChangeState)
 
                if (!__isPredictionWindowOpendInUSBMode)
                {
-                       if (isKeypadExist || isClipboardExist)
-                       {
-                               __pFooter->SetHideButton(true);
-                       }
-                       else
-                       {
-                               __pFooter->SetHideButton(false);
-                       }
+                       __pFooter->SetHideButton(true);
                }
        }
        else