From: Taejun Date: Mon, 22 Apr 2013 01:35:04 +0000 (+0900) Subject: Fix unchanged hide button when edit deleted[N_SE-35606] X-Git-Tag: accepted/tizen_2.1/20130425.033138~64^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5fe412defb3e0fdd218c3f25860b7b49eee7007b;p=framework%2Fosp%2Fuifw.git Fix unchanged hide button when edit deleted[N_SE-35606] Change-Id: Ib8d696c7e63907518b488e82d8e95a868be45c31 --- diff --git a/src/ui/controls/FUiCtrl_EditPresenter.cpp b/src/ui/controls/FUiCtrl_EditPresenter.cpp index 2194639..94a718f 100644 --- a/src/ui/controls/FUiCtrl_EditPresenter.cpp +++ b/src/ui/controls/FUiCtrl_EditPresenter.cpp @@ -1002,6 +1002,17 @@ _EditPresenter::Dispose(void) __pCommandButton = null; } + if (__clipboardConnected) + { + __pClipboard->HidePopup(); + __isClipboardExist = false; + + if (__pParentForm) + { + __pParentForm->SetClipboardShowState(false); + } + } + if (__pParentForm) { SysLog(NID_UI_CTRL, "[EDIT] Form deflate RESET!!!!!!!!!!"); @@ -1031,12 +1042,6 @@ _EditPresenter::Dispose(void) __initialFooterVisibleStatus = EDIT_FOOTER_VISIBLE_STATUS_NONE; } - if (__clipboardConnected) - { - __pClipboard->HidePopup(); - __isClipboardExist = false; - } - if (__pClipboard) { __pClipboard->RemoveClipboardPopupEventListener(*this);