I created a custom post type for my blog, to allow easier separation of content. This new post type supports different post formats, but most of them will be galleries.
register_post_type('atelier',
array(
'label' => 'L\'Atelier',
'public' => true,
'supports' => array('title', 'editor', 'post-formats')
)
);
I saw that it is possible in Settings -> Writing to set the default post format for posts, is it possible to do the same for my newly created post type?