From 1e0a61eb598f6a0da0a758453dadf3a39b119160 Mon Sep 17 00:00:00 2001 From: Sara Gerretsen Date: Thu, 4 Sep 2025 21:24:57 +0200 Subject: [PATCH] feat: template now enables nav keyboard and gamepad by default, as well as docking --- src/CHANGEME.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/CHANGEME.cpp b/src/CHANGEME.cpp index 77b738c..8751fe9 100644 --- a/src/CHANGEME.cpp +++ b/src/CHANGEME.cpp @@ -12,6 +12,11 @@ void configure(AppConfig &config) { } void setup() { + ImGui::GetIO().ConfigFlags |= ( + ImGuiConfigFlags_NavEnableKeyboard + | ImGuiConfigFlags_NavEnableGamepad + | ImGuiConfigFlags_DockingEnable + ); } void loop() {