From 916253ca4b159f2eced7e8536da3f7fa23ac8d8b Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Mon, 17 Mar 2025 21:33:13 +0800 Subject: [PATCH] Tutorial(Gui24): make text readable under dark theme (#241) ...by changing the text color to `SBlue`. --- tutorial/Gui24/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/Gui24/main.cpp b/tutorial/Gui24/main.cpp index f0cb17ef7..dae6e566e 100644 --- a/tutorial/Gui24/main.cpp +++ b/tutorial/Gui24/main.cpp @@ -13,7 +13,7 @@ struct MyAppWindow : TopWindow { void Paint(Draw& w) override { w.DrawRect(GetSize(), SLtYellow); - w.DrawText(20, 20, t_("Hello translation engine!"), Arial(30), Blue); + w.DrawText(20, 20, t_("Hello translation engine!"), Arial(30), SBlue); } };