From aebec6329a7f11b9dbd503d2b78be5e1ca56554e Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 24 Oct 2022 15:00:50 +0200 Subject: [PATCH] =?UTF-8?q?Use=20=E2=9A=A0=20instead=20of=20=E2=80=BC=20in?= =?UTF-8?q?=20"Debug=20build"=20warning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The latter is not supported by the default fonts --- crates/egui/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/lib.rs b/crates/egui/src/lib.rs index bdeda858..812cfec1 100644 --- a/crates/egui/src/lib.rs +++ b/crates/egui/src/lib.rs @@ -373,7 +373,7 @@ pub use { pub fn warn_if_debug_build(ui: &mut crate::Ui) { if cfg!(debug_assertions) { ui.label( - RichText::new("‼ Debug build ‼") + RichText::new("⚠ Debug build ⚠") .small() .color(ui.visuals().warn_fg_color), )