Make directories stand out more

This commit is contained in:
jpirnay
2026-03-07 11:21:21 +01:00
parent 49b54e1e8e
commit 7183b75a3c
+1 -1
View File
@@ -238,7 +238,7 @@ void FileBrowserActivity::loop() {
std::string getFileName(std::string filename) {
if (filename.back() == '/') {
return filename.substr(0, filename.length() - 1);
return "[" + filename.substr(0, filename.length() - 1) + "]";
}
const auto pos = filename.rfind('.');
return filename.substr(0, pos);