27.00.01.00
This option is disabled by default and I have not enabled it.
Very interesting... What version of XYplorer are you using?FoxWMulder wrote: ↑02 Dec 2025 11:23 IF I have XYplorer open with the "This PC" tab PINNED, then when the save dialog opens, it closes saving a file named "This PC".
Settings > Theme tab, find Show sections in Menu text and uncheck locked tabs below it.Yes, I do.Can you select path from the Menu?
Code: Select all
if (_path = path) {
; Successfully changed
ControlSend,, % "{Enter}", % "ahk_id " editId
; Restore filename
ControlFocus,, % "ahk_id " editId
ControlSetText,, % _fileName, % "ahk_id " editId
return true
}Code: Select all
if (_path = path) && (path != "This PC") {
; Successfully changed
ControlSend,, % "{Enter}", % "ahk_id " editId
; Restore filename
ControlFocus,, % "ahk_id " editId
ControlSetText,, % _fileName, % "ahk_id " editId
return true
}
return false
}I don't see any internal diffs between stock and modified dialogs... Can you select path from the Menu?
AutoSwitch internally works the same way as selecting a path from the Menu: the contents of the Edit1 control (the field to the right of filename) is replaced with the path. If the contents of Edit1 is the same as the path (the contents have been successfully replaced), the Enter key is sent to this control, causing the path in the dialog to change.Enter activates Button2 (Save as) instead of Edit1... This should be fixed in 1.8.5 but idk why it doesn't work for you.Interesting. Please disable
AutoSwitch (or set AutoSwitch param in the QuickSwitch.INI to 0 or remove [Dialogs] section), open modified file dialog, open the Menu, then Menu settings. Press Debug button at the top of the settings and then press Export button. Add files here and paste path to the .csv in the appeared dialog near the filename field (it's already in the clipboard) then press Open.Should be fixed in version 1.8.5, please try it.FoxWMulder wrote: ↑27 Nov 2025 02:07 Why if turn on "always auto switch" when the save dialog opens, the "Save" button is automatically clicked?
Always AutoSwitch option should enable AutoSwitch for all file dialogs. You can disable/enable AutoSwitch in specific file dialogs if you want: open File Dialog, open Menu and select AutoSwitch item. It will enable/disable AutoSwitch for current File Dialog and Always AutoSwitch option wouldn't affect it.Sounds like a bug. In which application did you open Save As file dialog?FoxWMulder wrote: ↑27 Nov 2025 02:07 Why if turn on "always auto switch" when the save dialog opens, the "Save" button is automatically clicked?
I can confirm that the problem is still present. I have made corrections: the delay before file dialog appears has been increased but is only activated when the dialog is first opened. Please download the updated archives. You can join the discussion on this issue and provide feedback here.FoxWMulder wrote: ↑11 Aug 2025 18:46 if turn on "always auto switch" when the save dialog opens, the "Save" button is automatically clicked.