diff options
author | hyun lee <hyunn.lee@samsung.com> | 2013-09-03 16:04:23 +0900 |
---|---|---|
committer | hyun lee <hyunn.lee@samsung.com> | 2013-09-03 16:04:23 +0900 |
commit | 99583ccea0a7055d3f7fdb6a907e2ece22548329 (patch) | |
tree | 35f9056da16593bf6e34bef23e2666a5932996bc | |
parent | 173021fdbad5b4aceb21d2b4fc0ab36df757832f (diff) | |
download | WebViewer-99583ccea0a7055d3f7fdb6a907e2ece22548329.tar.gz WebViewer-99583ccea0a7055d3f7fdb6a907e2ece22548329.tar.bz2 WebViewer-99583ccea0a7055d3f7fdb6a907e2ece22548329.zip |
Fix for keypad issue
Change-Id: I92b810fc041528b854e53dca9d31517e13c78363
Signed-off-by: hyun lee <hyunn.lee@samsung.com>
-rw-r--r-- | project/src/WebViewer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project/src/WebViewer.cpp b/project/src/WebViewer.cpp index 0fc27db..cdae6e3 100644 --- a/project/src/WebViewer.cpp +++ b/project/src/WebViewer.cpp @@ -282,13 +282,13 @@ WebViewer::OnOrientationChanged(const Control& source, OrientationStatus orienta void WebViewer::OnTextValueChangeCanceled(const Tizen::Ui::Control& source) { - __pMainForm->SetFocus(); + __pWeb->SetFocus(); } void WebViewer::OnTextValueChanged(const Tizen::Ui::Control& source) { - __pMainForm->SetFocus(); + __pWeb->SetFocus(); } void |