From fbbecdf7055c52aa0a68ceb5c1f5131a7a5a21ad Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Mon, 29 Jun 2015 14:32:43 +0100 Subject: [PATCH] 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 --- dali-toolkit/internal/controls/table-view/table-view-impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.7.4