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
When firing a warning status in a SciJava application, it is displayed twice. Example code:
ImageJ ij = new ImageJ();
ij.ui().showUI();
StatusEvent event = new StatusEvent("test", true);
ij.event().publish(event);
The first popup is created by the DefaultUIServicehere, the second one by the SwingStatusBarhere. Should I just remove it from the status bar or is there a reason for this duplication?
The text was updated successfully, but these errors were encountered:
When firing a warning status in a SciJava application, it is displayed twice. Example code:
The first popup is created by the
DefaultUIService
here, the second one by theSwingStatusBar
here. Should I just remove it from the status bar or is there a reason for this duplication?The text was updated successfully, but these errors were encountered: