floating
Parameters
- self:*Reorderable
- *Reorderable
Source
Implementation
pub fn floating(self: *Reorderable) bool {
// if drag_point is non-null, id_reorderable is non-null
if (self.reorder.drag_point != null and self.reorder.id_reorderable.? == (self.init_options.reorder_id orelse self.data().id.asUsize())) {
return true;
}
return false;
}