From 9b2745fa258e934ce685e2a0794378b632473746 Mon Sep 17 00:00:00 2001 From: Egutierrez Date: Wed, 29 Apr 2026 00:54:43 +0200 Subject: [PATCH] =?UTF-8?q?feat(cpp/framework):=20viewports=3Dtrue=20por?= =?UTF-8?q?=20defecto=20en=20AppConfig=20=E2=80=94=20ventanas=20arrastrabl?= =?UTF-8?q?es=20fuera=20del=20main?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cpp/framework/app_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/framework/app_base.h b/cpp/framework/app_base.h index 7aa157be..5ebcecf0 100644 --- a/cpp/framework/app_base.h +++ b/cpp/framework/app_base.h @@ -34,7 +34,7 @@ struct AppConfig { int width = 1280; int height = 720; bool vsync = true; - bool viewports = false; // Enable multi-viewport: ImGui windows become real OS windows + bool viewports = true; // Multi-viewport ON por defecto: ventanas ImGui arrastrables fuera del main window ThemeMode theme = ThemeMode::FnDark; // Identidad visual unificada por defecto float bg_r = 0.102f; // fn_tokens::colors::bg (dark.7 #1A1B1E) float bg_g = 0.106f;