mirror of
https://github.com/devine-dl/devine.git
synced 2025-04-30 01:59:44 +00:00
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:
parent
b3fdafcf06
commit
fa84ef53e7
@ -672,7 +672,7 @@ class dl:
|
|||||||
if key == "0" * 32:
|
if key == "0" * 32:
|
||||||
key = f"[red]{key}[/]"
|
key = f"[red]{key}[/]"
|
||||||
if kid_ == kid:
|
if kid_ == kid:
|
||||||
key += " *"
|
key += "*"
|
||||||
label = f"[text2]{kid_.hex}:{key}"
|
label = f"[text2]{kid_.hex}:{key}"
|
||||||
if not any(x.label == label for x in cek_tree.children):
|
if not any(x.label == label for x in cek_tree.children):
|
||||||
cek_tree.add(label)
|
cek_tree.add(label)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user