Hi,
In fact, the setting "Upload free download files" was just modifying the uploaded files with drag'n'drop.
So if you want to change the setting for the manual upload, for the moment you have to override the view "productmarket / file" and replace
<td>
<?php echo JHTML::_('hikaselect.booleanlist', "data[file][file_free_download]" , '', @$this->element->file_free_download); ?>
</td>
By
<td><?php
if(!isset($this->element->file_free_download))
$this->element->file_free_download = $this->config->get('upload_file_free_download',0);
echo JHTML::_('hikaselect.booleanlist', "data[file][file_free_download]" , '', $this->element->file_free_download);
?></td>
So it will also read that configuration setting in the popup.
(That patch will be include in the next HikaMarket release).
Regards,