Border Disappearance Issue in After Effects 2025 Script Panel
I wrote a script panel, but there is an issue with the display in After Effects 2025.
When checking and unchecking checkboxes, the border disappears. (the same issue with radio button)
This problem did not occur in version 2024.
Here is the code for testing purposes.
Please save the following text as a JSX file and execute it in After Effects
//-------------------------------------
var testPanel = this instanceof Panel ? this : new Window("palette", "Test", undefined);
var main = testPanel.add("group", undefined, "");
var checkbox = main.add("checkbox", undefined, "Checkbox");
if (testPanel instanceof Window) {
testPanel.center();
testPanel.show();
}
