DVUI

removed

Parameters

#
self:*Branch
*Branch

Source

Implementation

#
pub fn removed(self: *Branch) bool {
        // if drag_ending is true, id_reorderable is non-null
        if (self.tree.drag_ending and self.tree.id_branch.? == (self.init_options.branch_id orelse self.data().id.asUsize())) {
            return true;
        }

        return false;
    }