Name column is missing grid, just white when selected?

Things you’d like to miss in the future...
Post Reply
PlorerXY6
Posts: 60
Joined: 13 Oct 2022 19:51

Name column is missing grid, just white when selected?

Post by PlorerXY6 »

Name column is missing grid, just white when selected?
How can I get the grid and blue color back on the Name column?
Sorted by date modified and no issue in that column.
Name column a) grid is missing b) background is white instead of the blue like the other columns

admin
Site Admin
Posts: 60622
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Name column is missing grid, just white when selected?

Post by admin »

Got a screenshot?

PlorerXY6
Posts: 60
Joined: 13 Oct 2022 19:51

Re: Name column is missing grid, just white when selected?

Post by PlorerXY6 »

admin wrote: 19 Mar 2024 19:03Got a screenshot?
see attached, I want the grid back in Name column...don't understand what is wrong! Pressing F2 brings back the blue color of note.
rename becomes blue white name column.png
rename becomes blue white name column.png (5.11 KiB) Viewed 142 times
white name column.png
white name column.png (4.16 KiB) Viewed 142 times

PlorerXY6
Posts: 60
Joined: 13 Oct 2022 19:51

Re: Name column is missing grid, just white when selected?

Post by PlorerXY6 »

unselected - no grid in name column.png
unselected - no grid in name column.png (4.22 KiB) Viewed 141 times

admin
Site Admin
Posts: 60622
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Name column is missing grid, just white when selected?

Post by admin »

Cannot reproduce.

Click menu Help | Various Information and post the return.

PlorerXY6
Posts: 60
Joined: 13 Oct 2022 19:51

Re: Name column is missing grid, just white when selected?

Post by PlorerXY6 »

admin wrote: 20 Mar 2024 07:48 Cannot reproduce.

Click menu Help | Various Information and post the return.
It says--
EDIT - (cut these as resolved/issue was a script per below)
Last edited by PlorerXY6 on 21 Mar 2024 14:35, edited 2 times in total.

PlorerXY6
Posts: 60
Joined: 13 Oct 2022 19:51

Re: Name column is missing grid, just white when selected?

Post by PlorerXY6 »

Update looks like I had a button script filter applied that I thought was only being applied to one folder...clicked again & it went away. Is there another way to know if I have a filter/script applied and to reset it to off?

Script--

perm $P_CC_Trigger;

$mode = popupmenu("Date modified;m|Date created;c|Extension;e");
if !($mode) { status "No mode selected, aborted!", "8B4513", "stop"; end 1==1; }
$P_CC_Trigger = $mode;

// Date (created or modified)
if (regexmatches($mode, "c|m")) {
$colorFilters = <<<>>>
L:age$mode: <= 24 h //today>000000 //,00EE00
L:age$mode: <= 168 h //this week>000000 //,24EE00
L:age$mode: <= 744 h //this month>000000 //,68EE00
L:age$mode: <= 8544 h //this year>000000 //,ACEE00
L:age$mode: > 8544 h //way older>000000 //,FFEE00
>>>;

// File extension
} else {
// new (clever) $colorFilters definition...
}

#485; // Refresh list
colorfilter($colorFilters, <crlf>);

Post Reply