diff --git a/DearPyGui/src/Platform/Apple/mvAppleWindow.mm b/DearPyGui/src/Platform/Apple/mvAppleWindow.mm index ca26fdb1a..ee3b3dde9 100644 --- a/DearPyGui/src/Platform/Apple/mvAppleWindow.mm +++ b/DearPyGui/src/Platform/Apple/mvAppleWindow.mm @@ -41,6 +41,7 @@ static void glfw_error_callback(int error, const char *description) IMGUI_CHECKVERSION(); ImGui::CreateContext(); ImGuiIO &io = ImGui::GetIO(); + io.ConfigWindowsMoveFromTitleBarOnly = true; (void) io; //io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls //io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls diff --git a/DearPyGui/src/Platform/Linux/mvLinuxWindow.cpp b/DearPyGui/src/Platform/Linux/mvLinuxWindow.cpp index 76c64fcbd..ee0ef6d3d 100644 --- a/DearPyGui/src/Platform/Linux/mvLinuxWindow.cpp +++ b/DearPyGui/src/Platform/Linux/mvLinuxWindow.cpp @@ -55,6 +55,7 @@ namespace Marvel { IMGUI_CHECKVERSION(); ImGui::CreateContext(); ImGuiIO& io = ImGui::GetIO(); (void)io; + io.ConfigWindowsMoveFromTitleBarOnly = true; //io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls //io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls