Merge "Fix TCT issues" into tizen
authorminho.sun <minho.sun@samsung.com>
Thu, 23 Mar 2017 10:34:53 +0000 (03:34 -0700)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Thu, 23 Mar 2017 10:34:53 +0000 (03:34 -0700)
1  2 
src/Tizen.NUI/src/public/CustomView.cs

@@@ -64,9 -64,6 +64,9 @@@ namespace Tizen.NU
              viewWrapperImpl.OnTap = new ViewWrapperImpl.OnTapDelegate(OnTap);
              viewWrapperImpl.OnLongPress = new ViewWrapperImpl.OnLongPressDelegate(OnLongPress);
  
 +            // By default, we do not want the position to use the anchor point
 +            this.PositionUsesAnchorPoint = false;
 +
              // Make sure CustomView is initialized.
              OnInitialize();
  
@@@ -94,7 -91,7 +94,7 @@@
           * @endcode
           * @param[in]  type  The gesture type(s) to enable.
           */
 -        internal void EnableGestureDetection(Gesture.GestureType type)
 +        public void EnableGestureDetection(Gesture.GestureType type)
          {
              viewWrapperImpl.EnableGestureDetection(type);
          }
          /// <summary>
          /// Called by the KeyboardFocusManager.
          /// </summary>
-         public void KeyboardEnter()
+         internal void KeyboardEnter()
          {
              viewWrapperImpl.KeyboardEnter();
          }
          /// </summary>
          /// <param name="key">The key event</param>
          /// <returns>True if the event was consumed</returns>
-         public bool EmitKeyEventSignal(Key key)
+         internal bool EmitKeyEventSignal(Key key)
          {
              return viewWrapperImpl.EmitKeyEventSignal(key);
          }
           * @note Tap detection should be enabled via EnableGestureDetection().
           * @see EnableGestureDetection
           */
 -        internal virtual void OnTap(TapGesture tap)
 +        public virtual void OnTap(TapGesture tap)
          {
          }