Hi,
Well, it is not possible via options, but it might be possible with a custom code.
Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!
add_filter( 'asp_query_args', 'asp_custom_menu_order', 10, 1 );
function asp_custom_menu_order($args) {
global $wpdb;
$args['cpt_query'] = array(
'fields' => "$wpdb->posts.menu_order as menu_order, ",
'join' => '',
'where' => '',
'orderby'=> 'menu_order DESC, '
);
return $args;
}