From bf0659f07b8f7bef92b95a3a383ea814736b7690 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Mon, 7 Jul 2025 11:52:13 -0500 Subject: [PATCH] use checkmark for icon if child exits normally --- src/apprt/gtk/Surface.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apprt/gtk/Surface.zig b/src/apprt/gtk/Surface.zig index b8b5145af..480907109 100644 --- a/src/apprt/gtk/Surface.zig +++ b/src/apprt/gtk/Surface.zig @@ -2513,7 +2513,7 @@ 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.");