Skip to content

Commit

Permalink
Mods
Browse files Browse the repository at this point in the history
  • Loading branch information
madprops committed Apr 20, 2024
1 parent 7c916eb commit 89f0824
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions clipton.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from datetime import datetime
from dataclasses import dataclass

VERSION = "46"
VERSION = "47"
# https://github.com/madprops/clipton

USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
Expand Down Expand Up @@ -570,8 +570,9 @@ def get_icon(item: "Item", line: str, td: "TextData") -> str:
s += f"{Settings.single_icon} {line}"
elif Settings.multi_icon and (not td.single):
s += f"{Settings.multi_icon} {line}"
else:
s += line

if not s:
s = line

return s

Expand Down

0 comments on commit 89f0824

Please sign in to comment.