Change text wrap type of popup object from CHAR to WORD 20/43020/1 accepted/tizen/tv/20150707.063809 submit/tizen_tv/20150707.052512
authorsungwon2.han <sungwon2.han@samsung.com>
Tue, 7 Jul 2015 05:23:30 +0000 (14:23 +0900)
committersungwon2.han <sungwon2.han@samsung.com>
Tue, 7 Jul 2015 05:23:30 +0000 (14:23 +0900)
Change-Id: Ib47aa1c143aca49c0fe079383efc77e0aaaacf68
Signed-off-by: sungwon2.han <sungwon2.han@samsung.com>
services/SimpleUI/SimplePopup.cpp
services/SimpleUI/SimpleUI.cpp

index f732b78ed638dd20c799d757b12aac095614e8e6..363e90569d57b4919bfd5c81997e4ff548fc0248 100644 (file)
@@ -48,7 +48,7 @@ namespace base_ui
         else
             elm_object_text_set(popup, message.c_str());
 
-        elm_popup_content_text_wrap_type_set(popup, ELM_WRAP_CHAR);
+        elm_popup_content_text_wrap_type_set(popup, ELM_WRAP_WORD);
         elm_object_part_text_set(popup, "title,text", title.c_str());
 
         int buttonsCounter = 1;
index 11dd807cf8855077fd8305a9c36462a725b36321..ef0d403278441dbd1b374784de57d75818276cfd 100644 (file)
@@ -1054,7 +1054,7 @@ void SimpleUI::onDeleteHistoryButton(PopupButtons button, std::shared_ptr< Popup
         m_historyService->clearAllHistory();
         m_history->setEnabled(false);
         webTitleBar->removeFavIcon();
-        webTitleBar->show("History deleted");
+        webTitleBar->show("All histories are deleted");
         hidePopup();
     }
 }