Skip to content

Commit acf7c65

Browse files
ui: replace hardcoded emoji by its code
to avoid rendering issues.
1 parent d81374e commit acf7c65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/opensnitch/dialogs/processdetails.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def _load_data(self, data):
283283
if 'Tree' in proc:
284284
proc['Tree'].reverse()
285285
self.labelParent.setText(
286-
"<b>Parent(s): </b>" + " 🡆 ".join(
286+
"<b>Parent(s): </b>" + " \U000027a1 ".join(
287287
path['key'] for path in proc['Tree']
288288
)
289289
)

0 commit comments

Comments
 (0)