We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ca3732 commit ffcf608Copy full SHA for ffcf608
src/main/java/com/pedropathing/telemetry/Folder.java
@@ -34,7 +34,7 @@ public List<String> getLines() {
34
String listName;
35
if (child instanceof Item) listName = child.name;
36
else listName = child.name + " [...]";
37
- lines.add(i == selectedIndex ? "> " : " " + listName);
+ lines.add((i == selectedIndex ? "> " : " ") + listName);
38
}
39
return lines;
40
0 commit comments