From 95b7ef4bec8b11fd1e3d64c2d2440cc80f58bad4 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Mon, 29 Jan 2024 00:40:52 +0200 Subject: [PATCH] Better ImGui configuration --- src/panda_qt/main_window.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/panda_qt/main_window.cpp b/src/panda_qt/main_window.cpp index 6f20496e..216904bc 100644 --- a/src/panda_qt/main_window.cpp +++ b/src/panda_qt/main_window.cpp @@ -132,8 +132,12 @@ MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent) ImGui::CreateContext(); ImGuiIO& io = ImGui::GetIO(); - io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls - io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls + io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable keyboard controls + io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable gamepad controls + io.ConfigFlags |= ImGuiConfigFlags_DockingEnable; // Enable docking + io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable; // Enable multi-viewport + io.ConfigFlags |= ImGuiConfigFlags_DpiEnableScaleViewports; + io.ConfigFlags |= ImGuiConfigFlags_DpiEnableScaleFonts; // Setup Dear ImGui style ImGui::StyleColorsDark();