Page 1 of 1

Name column is missing grid, just white when selected?

Posted: 19 Mar 2024 16:20
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

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

Posted: 19 Mar 2024 19:03
by admin
Got a screenshot?

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

Posted: 20 Mar 2024 01:06
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
white name column.png

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

Posted: 20 Mar 2024 01:07
by PlorerXY6
unselected - no grid in name column.png

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

Posted: 20 Mar 2024 07:48
by admin
Cannot reproduce.

Click menu Help | Various Information and post the return.

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

Posted: 20 Mar 2024 14:11
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)

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

Posted: 20 Mar 2024 14:27
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>);