If you try to drag the window, the application will crash with an error: Expression: (g.IO.DeltaTime > 0.0f || g.FrameCount == 0) && "Need a positive DeltaTime!"
https://github.com/mosra/magnum-integration/blob/master/src/Magnum/ImGuiIntegration/Context.cpp#L252 io.DeltaTime can be zero.
Possible fix:
if (io.DeltaTime == 0.0f) { io.DeltaTime = 0.0000001f; }
but looks creepy
If you try to drag the window, the application will crash with an error: Expression: (g.IO.DeltaTime > 0.0f || g.FrameCount == 0) && "Need a positive DeltaTime!"
https://github.com/mosra/magnum-integration/blob/master/src/Magnum/ImGuiIntegration/Context.cpp#L252 io.DeltaTime can be zero.
Possible fix:
if (io.DeltaTime == 0.0f) { io.DeltaTime = 0.0000001f; }
but looks creepy