From 476b809c4d9b0d5b801f6719a4f9dcc9424a44cf Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 16 Mar 2019 20:59:57 +0100 Subject: [PATCH] Enable docking flag. --- profiler/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 34c1a7a7..1c6276f4 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -258,7 +258,7 @@ int main( int argc, char** argv ) ImGuiIO& io = ImGui::GetIO(); std::string iniFileName = tracy::GetSavePath( "imgui.ini" ); io.IniFilename = iniFileName.c_str(); - io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; + io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard | ImGuiConfigFlags_DockingEnable; ImGui_ImplGlfw_InitForOpenGL( window, true ); ImGui_ImplOpenGL3_Init( "#version 150" );