# UnifiedFiler v1.9.3-fix2 Notes

This maintenance release focuses on FileExplorer inline rename usability.

## Fixed

- The inline rename textbox could appear too small or visually unclear in DetailView.
- Mouse-triggered rename could start too eagerly because a plain name click was enough to enter rename after a delay.

## Changed

- The default `inlineRenameTrigger` is now `selectedNameClick`, matching Windows Explorer style behavior.
  - First click: select the item.
  - Second click on the selected name: start inline rename.
  - Double-click: open the item.
- The rename textbox width is calculated from the view layout and available name area.
- For files, the base name is selected and the extension remains visible by default.

## New / clarified options

```javascript
{
  inlineRenameTrigger: 'selectedNameClick',
  inlineRenameSelectNameWithoutExtension: true,
  inlineRenameMinWidth: 96,
  inlineRenameMaxWidth: 520
}
```

Existing toolbar Rename, context-menu Rename, F2, and `startInlineRename()` remain supported.
