X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fpopup%2Fpopup-impl.cpp;h=45d56f6f1fae05b9b769a6a00e95f1c3245954f0;hp=66e63508330a3d4a0a4c5ef9975fb2b6ae4c974d;hb=5aaba5adcf1a717e1ece3ef9c55c8912420993b5;hpb=c86d2363fffcaf1d6804b4fd7347128b779dbe19 diff --git a/dali-toolkit/internal/controls/popup/popup-impl.cpp b/dali-toolkit/internal/controls/popup/popup-impl.cpp index 66e6350..45d56f6 100644 --- a/dali-toolkit/internal/controls/popup/popup-impl.cpp +++ b/dali-toolkit/internal/controls/popup/popup-impl.cpp @@ -1552,7 +1552,7 @@ bool Popup::OnBackingTouched( Actor actor, const TouchData& touch ) } // Block anything behind backing becoming touched. - mLayer.SetTouchConsumed( true ); + mLayer.SetProperty( Layer::Property::CONSUMES_TOUCH, true ); return true; } @@ -1565,7 +1565,7 @@ bool Popup::OnBackingWheelEvent( Actor actor, const WheelEvent& event ) } // Consume wheel event in dimmed backing actor. - mLayer.SetTouchConsumed( true ); + mLayer.SetProperty( Layer::Property::CONSUMES_TOUCH, true ); return true; } @@ -1578,7 +1578,7 @@ bool Popup::OnDialogTouched( Actor actor, const TouchData& touch ) } // Consume event (stops backing actor receiving touch events) - mLayer.SetTouchConsumed( true ); + mLayer.SetProperty( Layer::Property::CONSUMES_TOUCH, true ); return true; }