[TBT][tbtcoreapp-dali][Non-ACR][Fixed the wrong code] 09/156909/2
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Fri, 20 Oct 2017 11:40:45 +0000 (20:40 +0900)
committernibha2 <nibha.sharma@samsung.com>
Wed, 25 Oct 2017 03:35:26 +0000 (09:05 +0530)
- KeyEventSignal() should return false value for not consuming the event.
- Fixed the debug message correctly.

Change-Id: Iae2a44bc0d9cb404bd239e857885b25c3638dbf1
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
release/binary-armv7l/org.tizen.tbtcoreapp-dali-1.0.0-arm.tpk [changed mode: 0755->0644]
release/binary-x86/org.tizen.tbtcoreapp-dali-1.0.0-x86.tpk [changed mode: 0755->0644]
tbtcoreapp-dali/src/view/tbt-dali-text-control-view.cpp

old mode 100755 (executable)
new mode 100644 (file)
index 254b28c..26cf797
Binary files a/release/binary-armv7l/org.tizen.tbtcoreapp-dali-1.0.0-arm.tpk and b/release/binary-armv7l/org.tizen.tbtcoreapp-dali-1.0.0-arm.tpk differ
old mode 100755 (executable)
new mode 100644 (file)
index 798a8c1..8726f16
Binary files a/release/binary-x86/org.tizen.tbtcoreapp-dali-1.0.0-x86.tpk and b/release/binary-x86/org.tizen.tbtcoreapp-dali-1.0.0-x86.tpk differ
index 02231a8376119df24fabd4ac7fe2fd9de9e071fc..26c8886161932ba90d4cce1f73bdf2fefb11c2bd 100644 (file)
@@ -104,9 +104,9 @@ void TBTDaliTextControlView::onTextChanged(TextEditor editor)
 }
 bool TBTDaliTextControlView::onKeyEventSignal(Control control, const KeyEvent& event)
 {
-       DBG("TBTDaliSliderView::onKeyEventSignal");
+       DBG("TBTDaliTextControlView::onKeyEventSignal");
        lblKeyEvent.SetProperty(TextLabel::Property::TEXT,"  KeyEvent signal called");
        lblKeyEvent.SetProperty(TextLabel::Property::TEXT_COLOR,Color::GREEN);
-       return true;
+       return false;
 }