-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuration dialog generation from array @Parameters fails #17
Comments
I did some debugging and found this bug is caused by array parameters. @Parameter
private double[] testDouble; will not work, but @Parameter
private double testDouble; will. This bug occurs both within the fragmentDemo and buddyDemo projects, so I don't think it is caused by the different way those plugins are discovered. |
I stumbled upon this issue because I have a plugin that requires both a After quite some headache, I discovered that this might be because for Lines 97 to 103 in 3812f9b
... so the "ImageJ Dialog" part of the input dialog cannot be rendered. I figured that a workaround is to declare the |
MyBuddyDemoPlugin does not generate a correct configuration dialog with the
@Paramters
, instead:The text was updated successfully, but these errors were encountered: