From acf7c653af148d795a78fe92fbc357ee26142912 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20I=C3=B1iguez=20Goia?= Date: Mon, 24 Feb 2025 23:24:13 +0100 Subject: [PATCH] ui: replace hardcoded emoji by its code to avoid rendering issues. --- ui/opensnitch/dialogs/processdetails.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/opensnitch/dialogs/processdetails.py b/ui/opensnitch/dialogs/processdetails.py index 44ffed15..3caa45d7 100644 --- a/ui/opensnitch/dialogs/processdetails.py +++ b/ui/opensnitch/dialogs/processdetails.py @@ -283,7 +283,7 @@ class ProcessDetailsDialog(QtWidgets.QDialog, uic.loadUiType(DIALOG_UI_PATH)[0]) if 'Tree' in proc: proc['Tree'].reverse() self.labelParent.setText( - "Parent(s): " + " 🡆 ".join( + "Parent(s): " + " \U000027a1 ".join( path['key'] for path in proc['Tree'] ) )