From ba6953fda4a16c5e4549cd1308fbe47634a661ea Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 17 Oct 2025 19:33:08 +0200 Subject: [PATCH] fix: Color picker slider moving around when dragging them --- plugins/builtin/source/content/tools/color_picker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/builtin/source/content/tools/color_picker.cpp b/plugins/builtin/source/content/tools/color_picker.cpp index ff1146147..51d46bfb5 100644 --- a/plugins/builtin/source/content/tools/color_picker.cpp +++ b/plugins/builtin/source/content/tools/color_picker.cpp @@ -86,7 +86,7 @@ namespace hex::plugin::builtin { drawBitsSlider(&bitValue); // Configure drag and drop source and target - if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_SourceNoPreviewTooltip)) { + if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_None)) { // Set the current slider index as the payload ImGui::SetDragDropPayload("BIT_VALUE", &index, sizeof(u32));