1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-01-27 07:17:20 +00:00

minimized check

This commit is contained in:
lemz 2024-06-22 14:31:07 +02:00 committed by EliteMasterEric
parent d9b9854d91
commit 93475ae8aa

View file

@ -135,9 +135,6 @@ class ChartEditorNoteDataToolbox extends ChartEditorBaseToolbox
}
};
toolboxNotesCustomKind.value = chartEditorState.noteKindToPlace;
// just to be safe
clearNoteKindParams();
}
public override function refresh():Void
@ -173,6 +170,12 @@ class ChartEditorNoteDataToolbox extends ChartEditorBaseToolbox
{
super.update(elapsed);
// current dialog is minimized, dont change the height
if (this.minimized)
{
return;
}
// toolboxNotesGrid.height + 45
// this is what i found out is the calculation by printing this.height and grid.height
var heightToSet:Int = Std.int(Math.max(DIALOG_HEIGHT, toolboxNotesGrid.height + 45));