mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
Add padding space before file size
This commit is contained in:
parent
6662d644d5
commit
ce49d1fdf9
@ -164,9 +164,9 @@ void showDirectoryContents (const std::vector<DirEntry>& dirContents, int fileOf
|
||||
if (entry->name == "..") {
|
||||
font->print(-1, i + 1, true, "(..)", Alignment::right, pal);
|
||||
} else if (entry->isDirectory) {
|
||||
font->print(-1, i + 1, true, "(dir)", Alignment::right, pal);
|
||||
font->print(-1, i + 1, true, " (dir)", Alignment::right, pal);
|
||||
} else {
|
||||
font->printf(-1, i + 1, true, Alignment::right, pal, "(%s)", getBytes(entry->size).c_str());
|
||||
font->printf(-1, i + 1, true, Alignment::right, pal, " (%s)", getBytes(entry->size).c_str());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user