Better ImGui configuration

This commit is contained in:
wheremyfoodat 2024-01-29 00:40:52 +02:00
parent 3a33b4f8b8
commit 95b7ef4bec

View file

@ -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();