From 4a0f1890d1bde9cd28b6b01428e95fe505fa56ab Mon Sep 17 00:00:00 2001 From: jdbaracho <74615959+jdbaracho@users.noreply.github.com> Date: Sat, 21 Dec 2024 19:45:45 +0000 Subject: [PATCH] feat(tools): enable ImGui docking branch --- default.nix | 2 +- engine/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 98515f610..160d7f51c 100644 --- a/default.nix +++ b/default.nix @@ -65,7 +65,7 @@ let imgui = fetchFromGitHub { owner = "ocornut"; repo = "imgui"; - rev = "v1.89.9"; + rev = "v1.89.9-docking"; sha256 = "sha256-0k9jKrJUrG9piHNFQaBBY3zgNIKM23ZA879NY+MNYTU="; }; diff --git a/engine/CMakeLists.txt b/engine/CMakeLists.txt index 3dae8fe17..a652deff3 100644 --- a/engine/CMakeLists.txt +++ b/engine/CMakeLists.txt @@ -358,7 +358,7 @@ target_link_libraries(cubos-engine PUBLIC cubos-core) FetchContent_Declare( imgui GIT_REPOSITORY https://github.com/ocornut/imgui.git - GIT_TAG v1.89.9 + GIT_TAG v1.89.9-docking ) FetchContent_Declare( implot