Make the advanced dye window non-docking.

This commit is contained in:
Ottermandias 2024-10-06 12:51:35 +02:00
parent 726eb52e4f
commit 816e88e0bd

View file

@ -181,7 +181,8 @@ public sealed unsafe class AdvancedDyePopup(
var flags = ImGuiWindowFlags.NoFocusOnAppearing
| ImGuiWindowFlags.NoCollapse
| ImGuiWindowFlags.NoDecoration
| ImGuiWindowFlags.NoResize;
| ImGuiWindowFlags.NoResize
| ImGuiWindowFlags.NoDocking;
// Set position to the right of the main window when attached
// The downwards offset is implicit through child position.