From de7620174ff4ff7795cb07c71d860c6d18b17638 Mon Sep 17 00:00:00 2001 From: klugier Date: Mon, 9 Nov 2020 16:26:33 +0000 Subject: [PATCH] Tutorial: Gui23 default window size is now bigger. git-svn-id: svn://ultimatepp.org/upp/trunk@15380 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- tutorial/Gui23/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial/Gui23/main.cpp b/tutorial/Gui23/main.cpp index 2912b09a4..896802081 100644 --- a/tutorial/Gui23/main.cpp +++ b/tutorial/Gui23/main.cpp @@ -8,11 +8,11 @@ using namespace Upp; struct MyAppWindow : TopWindow { MyAppWindow() { Title(t_("My application")); - Zoomable().Sizeable().SetRect(0, 0, 400, 100); + Zoomable().Sizeable().SetRect(0, 0, 550, 100); } virtual void Paint(Draw& w) override { - w.DrawRect(GetSize(), SWhite); + w.DrawRect(GetSize(), SLtYellow); w.DrawText(20, 20, t_("Hello translation engine!"), Arial(30), Blue); } };