Page 1 of 1

Last item selected border

Posted: 15 Feb 2021 19:04
by w64bit
Click on a file in the list to select it. It is highlighted.
If you click on the list white background, the file is "unselected" (status bar confirm this) but a frame around the filename remain.
Is there any way to make the program to stop displaying it?

Re: Last item selected border

Posted: 15 Feb 2021 19:22
by highend
Configuration | Colors and Styles | Highlights & Dark Mode | Focus rectangle -> None

Re: Last item selected border

Posted: 15 Feb 2021 19:24
by w64bit
Yesssss. Thank you.

Re: Last item selected border

Posted: 15 Apr 2021 11:36
by w64bit
XY behavior:
1. select a file
2. click on empty space
3. press F2 > the previous selected file has it's name in editing mode.

How can I clear focus when click on empty space (like it is in File Explorer) so when I press F2 to do nothing?

Re: Last item selected border

Posted: 15 Apr 2021 12:04
by highend
You can't clear the focus. If you don't like the current behavior:

Create a user defined command from the category "Run Script"
with this:

Code: Select all

if (<get SelectedItemsNames>) { #172; }
and bind F2 to it...

Re: Last item selected border

Posted: 20 Apr 2024 21:37
by w64bit
I noticed that if I don't have anything selected in list, I cannot rename the folder in tree.
Steps to replicate:
- click on a file in list
- click on white background in list
- click on the folder in tree
- F2 > doesn't do anything
or
- click on a folder in tree (other than current folder)
- F2 > doesn't do anything

Re: Last item selected border

Posted: 20 Apr 2024 21:46
by highend
Can't replicate

Re: Last item selected border

Posted: 20 Apr 2024 21:55
by w64bit
I am using the script above and F2 remapping.

Re: Last item selected border

Posted: 20 Apr 2024 22:00
by highend
<get SelectedItemsNames> is for items in the list pane, not for selected tree folders
Add another check if the focus is on the tree...