You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improved readability of the misc.kt file in the 'imgui' application by adding space between variable declarations. Refactored several arrays for better code alignment. No changes to functionality were made in this commit, this is purely a refactor for better code style and readability.
g.windows.filter { !it.active || it.flags hasnt Wf._ChildWindow } // if a child is active its parent will add it
365
-
.forEach { it addToSortBuffer g.windowsTempSortBuffer }
365
+
.forEach { it addToSortBuffer g.windowsTempSortBuffer }
366
366
assert(g.windows.size == g.windowsTempSortBuffer.size) { "This usually assert if there is a mismatch between the ImGuiWindowFlags_ChildWindow / ParentWindow values and DC.ChildWindows[] in parents, aka we've done something wrong." }
367
367
g.windows.clear()
368
368
g.windows += g.windowsTempSortBuffer
@@ -408,16 +408,15 @@ interface main {
408
408
renderDimmedBackgrounds()
409
409
410
410
// Add ImDrawList to render
411
-
val windowsToRenderTopMost = arrayOf(
412
-
g.navWindowingTarget?.rootWindow?.takeIf { it.flags has Wf.NoBringToFrontOnFocus },
0 commit comments