X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ffocus-manager%2Faccessibility-focus-manager-impl.cpp;h=0be65d3c91333ea74b229f4017561e1c5bb6d874;hp=728bd422295cb9322e35f7187a207614785668c5;hb=6332cf209a3a3ea4ce75e17b0136b05af5e84d54;hpb=b52e6007b9352062d4d974ada89e01223c1284a1 diff --git a/dali-toolkit/internal/focus-manager/accessibility-focus-manager-impl.cpp b/dali-toolkit/internal/focus-manager/accessibility-focus-manager-impl.cpp index 728bd42..0be65d3 100644 --- a/dali-toolkit/internal/focus-manager/accessibility-focus-manager-impl.cpp +++ b/dali-toolkit/internal/focus-manager/accessibility-focus-manager-impl.cpp @@ -190,7 +190,7 @@ void AccessibilityFocusManager::SetFocusOrder(Actor actor, const unsigned int or Property::Index propertyActorFocusable = actor.GetPropertyIndex(ACTOR_FOCUSABLE); if(propertyActorFocusable == Property::INVALID_INDEX) { - propertyActorFocusable = actor.RegisterProperty(ACTOR_FOCUSABLE, true); + propertyActorFocusable = actor.RegisterProperty( ACTOR_FOCUSABLE, true, Property::READ_WRITE ); } if(order == 0) @@ -511,7 +511,7 @@ void AccessibilityFocusManager::SetFocusGroup(Actor actor, bool isFocusGroup) Property::Index propertyIsFocusGroup = actor.GetPropertyIndex(IS_FOCUS_GROUP); if(propertyIsFocusGroup == Property::INVALID_INDEX) { - actor.RegisterProperty(IS_FOCUS_GROUP, isFocusGroup); + actor.RegisterProperty( IS_FOCUS_GROUP, isFocusGroup, Property::READ_WRITE ); } else { @@ -654,7 +654,7 @@ void AccessibilityFocusManager::SetFocusable(Actor actor, bool focusable) Property::Index propertyActorFocusable = actor.GetPropertyIndex(ACTOR_FOCUSABLE); if(propertyActorFocusable == Property::INVALID_INDEX) { - actor.RegisterProperty(ACTOR_FOCUSABLE, focusable); + actor.RegisterProperty( ACTOR_FOCUSABLE, focusable, Property::READ_WRITE ); } else {