FloatingPanel
FloatingPanel copied to clipboard
Be able to drag the panel when the tableview inside the panel is editing
Is there any possibility to configure this behavior in a future?
I will check whether the library is able to add the configuration or not 😉
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 }