We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd467c1 commit e860b2bCopy full SHA for e860b2b
1 file changed
Games Collection Manager/main.py
@@ -652,8 +652,10 @@ def format_txt_output(sections: list) -> str:
652
total_needs_cleaning_icon += 1
653
654
output_lines.append(title_line)
655
+ output_lines.append("") # Insert blank line between title and owned/total counters block
656
output_lines.append(f"- Owned: {total_owned} ({owned_breakdown}).")
657
output_lines.append(f"- Total: {total_games} ({total_breakdown}).")
658
+ output_lines.append("") # Insert blank line between total counters and icon distribution block
659
output_lines.append(f"-- Icons Distributions:")
660
output_lines.append(f"- Owned - {ICON_OWNED}: {total_owned_icon}.")
661
output_lines.append(f"- Owned Cleaning - {ICON_NEEDS_CLEANING}: {total_needs_cleaning_icon}.")
0 commit comments