ui: replace hardcoded emoji by its code

to avoid rendering issues.
This commit is contained in:
Gustavo Iñiguez Goia 2025-02-24 23:24:13 +01:00
parent d81374ebc7
commit acf7c653af
Failed to generate hash of commit

View file

@ -283,7 +283,7 @@ class ProcessDetailsDialog(QtWidgets.QDialog, uic.loadUiType(DIALOG_UI_PATH)[0])
if 'Tree' in proc:
proc['Tree'].reverse()
self.labelParent.setText(
"<b>Parent(s): </b>" + " 🡆 ".join(
"<b>Parent(s): </b>" + " \U000027a1 ".join(
path['key'] for path in proc['Tree']
)
)