51
Support and Feedback / Re: ButtonBar Size (DPI > 100%)
« on: September 08, 2025, 09:26:01 »
I will take a look.
MultiCommander v15.5 is released!
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Thank you very much for your help!Menu is actually drawn by Windows. This is drawn larger / smaller depending on your monitor scaling or windows settings for that.
I just started using your program and I really like it. I have a few questions, but most of them have been answered.
How can I increase the font size in these areas?
I added a password to the private key file via:Code: [Select]ssh-keygen -p -f
But that leads to the following error:
> Failed to authenticate using keyfile : -19
Then I deleted the PW again via the same ssh-keygen command and now MC accepts the empty PW (no popup appears), but this still ends in the same failed authenticate error message.
Thanks for the additional features Mathias.
I think that the last update may have broken something in the MS execution. MC 15.6 b3110 x64 on Win11 24H2 b26100.4652
I get a ‘Cannot delete’ msg when attempting to delete or move files using my previously working scripts.
Stepping through in the debugger everything seems 100% until the delete command is reached, I tried with & without options & it always fails.
E.g.Code: [Select]@var $currentPath = GetSourcePath();Breaks at last line with error msg (attached screenshot).
@var $Items = GetSourceItems(1);
@var $count = arrayCount($Items);
@var $curItem;
@var $fullFilename;
@var $array2[];
// Loop all items in the $Items array
for( $n = 0; $n < $count; $n++)
{
$curItem = $Items[$n];
$fullFilename = $currentPath ^ $curItem;
@var $isMatch = StrIsRegExpMatchNoCase($fullFilename, "[a-z0-9]{30}");
if($isMatch)
{
arrayAdd($array2, $curItem);
}
}
@var $options[] = {"RECYCLE", "NODIALOG"};
DeleteFiles($array2, $options);
Any ideas? Thanks!