@@ -316,9 +316,16 @@ public void onEvent(final DataDeletedEvent evt) {
316
316
317
317
@ Override
318
318
public void run () {
319
- // the code here gets called once the prompt is displayed.
320
- // There is no "OK" button in the prompt, so we don't need anything here
321
- // All the code is run from callbacks
319
+ // There is no "OK" button in the prompt, so we don't need anything here. All functionality is run from callbacks
320
+ // The code here gets called once the prompt is displayed and when CommandService.run() is called, so we'll only
321
+ // run analysis if called from a (pre-recorded) macro
322
+ if (ij .IJ .isMacro ()) {
323
+ try {
324
+ runAnalysis ();
325
+ } catch (final InterruptedException e ) {
326
+ throw new RuntimeException (e );
327
+ }
328
+ }
322
329
}
323
330
324
331
/*
@@ -361,14 +368,9 @@ private boolean ongoingAnalysis() {
361
368
362
369
protected void runAnalysis () throws InterruptedException {
363
370
if (Recorder .record ) {
364
- Recorder .recordString (
365
- "// N.B.: Currently,recorded instances of the Sholl Analysis prompt may not allow for \n " //
366
- + "// fully automated macros(see e.g., https://github.com/imagej/imagej-legacy/pull/239.)\n " //
367
- + "// Please have a look at the example scripts in Templates>Neuroanatomy>\n " //
368
- + "// for more robust ways to automate Sholl. E.g., the script\n " //
369
- + "// 'Sholl_Extract_Profile_From_Image_Demo.py' exemplifies how to parse\n " //
370
- + "// an image programmatically. Alternatively, the Legacy IJ1 command remains\n " //
371
- + "// available with historical support for recorded calls.\n " );
371
+ Recorder .recordString ("// Please have a look at the example scripts in Templates>Neuroanatomy> for more\n " //
372
+ + "// robust ways to automate Sholl. E.g., Sholl_Extract_Profile_From_Image_Demo.py\n " //
373
+ + "// exemplifies how to parse an image programmatically using API calls" );
372
374
}
373
375
switch (scope ) {
374
376
case SCOPE_IMP :
0 commit comments