ColorSeekBar icon indicating copy to clipboard operation
ColorSeekBar copied to clipboard

If view is disable dont processing onTouchEvent

Open AnadolStudio opened this issue 2 years ago • 0 comments

https://github.com/divyanshub024/ColorSeekBar/blob/b08f896845e94fe7c9452285e22151d150fe5718/colorseekbar/src/main/java/com/divyanshu/colorseekbar/ColorSeekBar.kt#L144-L164

 override fun onTouchEvent(event: MotionEvent?): Boolean { 
    if(!isEnable) return true
    ...
 }

AnadolStudio avatar Sep 03 '22 19:09 AnadolStudio