answering myself:
in qa-theme-base.php comment out:
elseif (isset($post['unselect_tags']))
$this->post_hover_button($post, 'unselect_tags', '', 'qa-a-unselect');
This does not set the <input> and the user cannot unselect the best answer...
---
Thing that is missing: check if ADMIN to allow him the unselect...
5 min later... got it :)
elseif ( isset($post['unselect_tags']) && (qa_get_logged_in_level() >= QA_USER_LEVEL_ADMIN) )
$this->post_hover_button($post, 'unselect_tags', '', 'qa-a-unselect');
have a great week-end!
Kai