Don't space the * that denotes KIDs within PSSH

This prevents it from being 1 character over the size limit and wrapping to the next line.
This commit is contained in:
rlaphoenix 2023-03-08 13:43:11 +00:00
parent b3fdafcf06
commit fa84ef53e7

View File

@ -672,7 +672,7 @@ class dl:
if key == "0" * 32:
key = f"[red]{key}[/]"
if kid_ == kid:
key += " *"
key += "*"
label = f"[text2]{kid_.hex}:{key}"
if not any(x.label == label for x in cek_tree.children):
cek_tree.add(label)