26
Feature Requests and Suggestions / Re: Implement Toggleable Locking For Sorting Columns In Explorer Panel
« on: June 09, 2025, 08:44:20 »
So fixed column size ? no matter how you resize the window ?
MultiCommander v14.2 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.
Clicking on the Alias Column Field to sort Aliases alphabetically and then hitting apply doesn't make MC remember the sorted Aliases. However moving them Up/Down does make them persistent. Can you please fix the Sorting By Column so they retain their alphabetical sort order ? Right now all my new Aliases are displayed at the bottom & I have to re-sort them Alphabetically by clicking on the Alias Column Field everytime. Please do something about this… At first I thought my Aliases got corrupt so I deleted all my Aliases.XML entries after making a backup, then I deleted all my new User Defined Commands Scripts after backing them up, this issue is still prevalent though.
P.S: When I manually edit the Aliases.XML & move the entries, the Order is maintained but not when clicking Alias Alphabetical Column Field and clicking Apply !
Oh I see, well I feared it would come to that —I'll link to a shortcut then.
P.S: Wait, will making a User Defined Command to hotlink the file work ? Nvm, I'll stick to using a shortlink .LNK.
Failed to create folder : "C:\Users\xxxxxxx\AppData\Roaming\MultiCommander\UserData\Languages"
Hi Mathias,
with MC 15.5 b3094 x64, Win11 24H2 b26100.4061 x64, this is what I am finding : -Code: [Select]@var $options[] = {“RECYCLE”, "NODIALOG"};
- deletes files (not recycle bin) No dialog but progress briefly appears as expected
DeleteFiles($array, $options);Code: [Select]@var $options[] = {“RECYLE”, "NODIALOG"};
- deletes files (not recycle bin) No dialog but progress briefly appears as expected
DeleteFiles($array, $options);Code: [Select]@var $options[] = {“RECYLE”};
- deletes files to recycle bin with dialog
DeleteFiles($array, $options);Code: [Select]@var $options[] = {“RECYCLE”};
- deletes files (not to recycle bin) with dialog
DeleteFiles($array, $options);
Perhaps you can replicate this?
@var $options[] = {“RECYCLE”, "NODIALOG"};
results in an array with 1 items instead of 2..