FloatingPanel icon indicating copy to clipboard operation
FloatingPanel copied to clipboard

Be able to drag the panel when the tableview inside the panel is editing

Open joseantoniogarciay opened this issue 4 years ago • 2 comments

Is there any possibility to configure this behavior in a future?

joseantoniogarciay avatar Aug 24 '21 18:08 joseantoniogarciay

I will check whether the library is able to add the configuration or not 😉

scenee avatar Aug 26 '21 09:08 scenee

hi again,

in Core.swift at line 625 , is being checking this behavior:

if let tableView = (scrollView as? UITableView), tableView.isEditing { return true }

Maybe a parameter like "forceScrollViewNotHandleTouchOnEditing"(false @ default) could be the work:

if let tableView = (scrollView as? UITableView), tableView.isEditing && !forceScrollViewNotHandleTouchOnEditing { return true }

joseantoniogarciay avatar Jun 02 '22 09:06 joseantoniogarciay