There is no setting to do so. You'll have to modify the code. This can be done with a layer (or even modifying the theme) and an override. However, here are the the corehacks with the changes.
1. Edit qa-include/qa-theme-base.php
2. Locate function vote_buttons and edit it this way:
Wrap each line that contains 'vote_down_tags' inside an IF statement with this condition (@$post['raw']['basetype'] !== 'Q')
For example, this line:
$this->post_disabled_button($post, 'vote_down_tags', '', 'qa-vote-second-button qa-vote-down');
Would turn into this line:
if (@$post['raw']['basetype'] !== 'Q') {
$this->post_disabled_button($post, 'vote_down_tags', '', 'qa-vote-second-button qa-vote-down');
}
3. Edit file qa-include/app/votes
4. Locate function qa_vote_set and add this:
if ($post['basetype'] === 'Q' && $vote == -1) {
return;
}
Before this line:
require_once QA_INCLUDE_DIR.'db/points.php';