From d42fdad1006fe8c3fa99d4c32a9f3639e39feaac Mon Sep 17 00:00:00 2001 From: ThePixelMoon Date: Thu, 5 Feb 2026 17:47:19 +0200 Subject: [PATCH] snippets: fix typo in Platform.cpp Specifying configuration to be exact --- doc/snippets/Platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/snippets/Platform.cpp b/doc/snippets/Platform.cpp index 9a583a789..064262a26 100644 --- a/doc/snippets/Platform.cpp +++ b/doc/snippets/Platform.cpp @@ -163,7 +163,7 @@ struct MyApplication: Platform::Application { MyApplication::MyApplication(const Arguments& arguments): Platform::Application{arguments, Configuration{} .setTitle("My Application") - .setSize({12800, 800})} + .setSize({1280, 800})} { DOXYGEN_ELLIPSIS() }