Custom Taxonomy List, Selection floats to top

After way too much Googling, here’s a fix 🙂

add_filter('wp_terms_checklist_args', function ($args) {
    $args['checked_ontop'] = false;
    return $args;
});