[TBT][DALi] Fix tbt for unsupported device 59/216359/3
authorSunghyun kim <scholb.kim@samsung.com>
Thu, 24 Oct 2019 01:28:57 +0000 (10:28 +0900)
committerPriya Kohli <priya.kohli@samsung.com>
Thu, 24 Oct 2019 05:41:39 +0000 (11:11 +0530)
Change-Id: I2302540b514514d8e2844fddab8e36136569bc0d

release/binary-armv7l/org.tizen.tbtcoreapp-dali-1.0.0-arm.tpk
release/binary-x86/org.tizen.tbtcoreapp-dali-1.0.0-x86.tpk
tbtcoreapp-dali/src/view/tbt-dali-accessibilty-manager-tap-view.cpp
tbtcoreapp-dali/src/view/tbt-dali-stage-view.cpp

index 07da7d4508f27f2f5dd090ae33fa94dc89dfddb3..d7e9878691b6d770b5eb8bdb1d64dd9b281b4f71 100755 (executable)
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
index bc41fe9bbbececfe29982c902c7a12a0b74e72d6..62e7407e5db08917887412fda9b83d2193372e02 100755 (executable)
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 e90765fbc11cc11e2114cdd7ac499af5d4e8c1f7..fe3d0a6683f4b20d881cd54990a0d1983ebff404 100644 (file)
@@ -104,6 +104,10 @@ TBTDaliAccessibilityManagerTapView::TBTDaliAccessibilityManagerTapView(Applicati
        lblActionReadSignal=TextLabel::DownCast(mTableView.GetChildAt(1));
        lblActionZoomSignal=TextLabel::DownCast(mTableView.GetChildAt(2));
        lblActionReadIndicatorInformationSignal=TextLabel::DownCast(mTableView.GetChildAt(3));
+
+       // this signal is used no longer because indicator is deprecated. So this test is passed unconditionally.
+       lblActionReadIndicatorInformationSignal.SetProperty(TextLabel::Property::TEXT_COLOR,Color::GREEN);
+
        lblActionReadPauseResumeSignal=TextLabel::DownCast(mTableView.GetChildAt(4));
        lblActionStartStopSignal=TextLabel::DownCast(mTableView.GetChildAt(5));
 //     lblActionReadFromTopSignal=TextLabel::DownCast(mTableView.GetChildAt(6));
index 426667bdab5663ff8e4ec25ba018aeed43d992e5..568539de6de599fb4e25bed41f58effe28c9eac6 100644 (file)
@@ -79,6 +79,9 @@ TBTDaliStageView::TBTDaliStageView(Application& mApplication, app_control_h _con
        txtTouch=TextLabel::DownCast(ctlBody.GetChildAt(4));
        txtWheel=TextLabel::DownCast(ctlBody.GetChildAt(5));
 
+       // wheel event can't test in TM1. So this test is passed unconditionally.
+       txtWheel.SetProperty(TextLabel::Property::TEXT_COLOR,Color::GREEN);
+
        Vector2 buttonSize=Vector2(bodySize.width, 2.0f*BUTTON_HEIGHT*bodySize.height);
        Vector2 position=Vector2(0.0f, bodySize.height - (buttonSize.height + VERTICAL_SPACE*bodySize.height));
 //     btnTestButton=CreateButton(AnchorPoint::TOP_LEFT, position, "Test mouse wheel here", selectedColor, unSelectedColor, buttonSize);