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
Bisecting points that 5845351 is the first commit where this issue occurs.
And seems like these changes in ScreenImpl is what's causing it, as reverting it solves the issue.
privateoverridefunctionhandleSetComponentIndex(child:Component, index:Int) {
varoffset=0;
for (iin0...StateHelper.currentState.length) {
if ((StateHelper.currentState.members[i] isComponent)) {
offset=i;
break;
}
}
// ...
Although I believe this could be an issue with the project in question as I couldn't make a minimal repro.
The text was updated successfully, but these errors were encountered:
NotHyper-474
changed the title
Tooltips rendering behind CollapsibleDialog
Tooltips rendering behind dialogs
Feb 10, 2025
I think I may have found the reason why this happens, the current state (ChartEditorState) adds a bunch of things that aren't Components to its FlxTypedGroup
Details
The previous code would cycle through all of them and place the tooltip at the end, but now it's placing it way before, since it's ignoring everything that isn't a component.
Details
I wonder if that should be something to solve in HaxeUI-Flixel or the project.
HaxeUI-Flixel: Latest commit
HaxeUI-Core: Git (da27e83), also happens on latest commit
Flixel: Git (ffa691cb2d2d81de35b900a4411e4062ac84ab58) from https://github.com/FunkinCrew/flixel
Bisecting points that 5845351 is the first commit where this issue occurs.
And seems like these changes in
ScreenImpl
is what's causing it, as reverting it solves the issue.Although I believe this could be an issue with the project in question as I couldn't make a minimal repro.
The text was updated successfully, but these errors were encountered: