NOTICE! This is a static HTML version of a legacy ImageJ Trac ticket.

The ImageJ project now uses GitHub Issues for issue tracking.

Please file all new issues there.

Ticket #876 (closed defect: fixed)

Opened 2011-11-18T10:32:30-06:00

Last modified 2011-11-18T11:18:52-06:00

Menu is disappearing

Reported by: bdezonia Owned by: curtis
Priority: major Milestone: imagej2-b1-initial
Component: UI Framework Version:
Severity: serious Keywords:
Cc: Blocked By:
Blocking:

Description

After opening an image the menu is no longer present. Clicking on the app bar restores it. But clicking back on the image makes it go away.

Assign as needed.

Change History

comment:1 Changed 2011-11-18T11:18:52-06:00 by curtis

  • Status changed from new to closed
  • Resolution set to fixed

(In [4431]) Scan for @EventHandler annotations recursively

Fixes #876. The bug was caused by the fact that AbstractSwingUI's
@EventHandler annotations were not being picked up, because it was an
abstract superclass of the actual Swing UI being used. So the
EventService.subscribe(Object) method did not find them before.