From: Adeel Kazmi Date: Mon, 29 Jun 2015 13:32:43 +0000 (+0100) Subject: TableView does not require touch events by default X-Git-Tag: dali_1.0.47~10 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=fbbecdf7055c52aa0a68ceb5c1f5131a7a5a21ad;hp=8b9cf049c43d6786ec188e501845e726da51321e TableView does not require touch events by default - Fixes issue with TextSelection popup. - TableView inside button was consuming the event and so the button itself was never getting the leave or interrupted event to clear state Change-Id: Ib3eda053053c47096db6f8d676ad4d87bd887e57 --- diff --git a/dali-toolkit/internal/controls/table-view/table-view-impl.cpp b/dali-toolkit/internal/controls/table-view/table-view-impl.cpp index f355713..0be26cd 100644 --- a/dali-toolkit/internal/controls/table-view/table-view-impl.cpp +++ b/dali-toolkit/internal/controls/table-view/table-view-impl.cpp @@ -1059,7 +1059,7 @@ void TableView::OnControlChildRemove( Actor& child ) } TableView::TableView( unsigned int initialRows, unsigned int initialColumns ) -: Control( ControlBehaviour( REQUIRES_TOUCH_EVENTS | REQUIRES_STYLE_CHANGE_SIGNALS ) ), +: Control( ControlBehaviour( REQUIRES_STYLE_CHANGE_SIGNALS ) ), mCellData( initialRows, initialColumns ), mLayoutingChild( false ), mRowDirty( true ), // Force recalculation first time