From 7fd900647e9047b0d6d1e4e10ccbb1806a52e8a1 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Tue, 8 Jul 2025 09:52:57 -0500 Subject: [PATCH] show_child_exited: remove emojis --- src/apprt/gtk/Surface.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apprt/gtk/Surface.zig b/src/apprt/gtk/Surface.zig index 2c405690c..3128c63e8 100644 --- a/src/apprt/gtk/Surface.zig +++ b/src/apprt/gtk/Surface.zig @@ -2513,9 +2513,9 @@ pub fn showChildExited(self: *Surface, info: apprt.surface.Message.ChildExited) warning_box.as(gtk.Widget).setValign(.end); const warning_text = if (info.exit_code == 0) - i18n._("✔️ Process exited normally. Press any key to close the terminal.") + i18n._("Process exited normally. Press any key to close the terminal.") else - i18n._("⚠️ Process exited abnormally. Press any key to close the terminal."); + i18n._("Process exited abnormally. Press any key to close the terminal."); const banner = adw.Banner.new(warning_text); banner.setRevealed(1);