Bugfixes, tweak colors
This commit is contained in:
@ -128,7 +128,7 @@ class TreeList implements Countable
|
||||
$keys = array_keys($this->list);
|
||||
echo "\e[{$screenRow};1H";
|
||||
if ($entryRow >= count($keys)) {
|
||||
echo ($selected?"\e[100;97m":"\e[0;90m")."\e[K";
|
||||
echo ($selected?"\e[44;97m":"\e[0;90m")."\e[K";
|
||||
if ($entryRow == count($keys)) echo str_repeat("\u{2574}",$columns);
|
||||
echo "\e[0m";
|
||||
//else echo "\e[90m\u{2805}\e[0m";
|
||||
@ -145,7 +145,7 @@ class TreeList implements Countable
|
||||
return;
|
||||
}
|
||||
echo "\e[{$screenRow};1H\e[0m";
|
||||
echo ($selected?"\e[100;97m":"\e[0;37m")."\e[K";
|
||||
echo ($selected?"\e[44;97m":"\e[0;37m")."\e[K";
|
||||
echo "\e[90m".str_repeat("\u{258f} ",$entry->depth)."\e[37m";
|
||||
|
||||
if ($entry->closer) {
|
||||
|
Reference in New Issue
Block a user