<html>
    <head>
      <base href="http://fiji.sc/bugzilla/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:johannes.schindelin@gmx.de" title="Johannes Schindelin <johannes.schindelin@gmx.de>"> <span class="fn">Johannes Schindelin</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Stack Dump window appears on play image stack"
   href="http://fiji.sc/bugzilla/show_bug.cgi?id=857">bug 857</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
                
           </td>
           <td>johannes.schindelin@gmx.de
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Stack Dump window appears on play image stack"
   href="http://fiji.sc/bugzilla/show_bug.cgi?id=857#c2">Comment # 2</a>
              on <a class="bz_bug_link 
          bz_status_ASSIGNED "
   title="ASSIGNED - Stack Dump window appears on play image stack"
   href="http://fiji.sc/bugzilla/show_bug.cgi?id=857">bug 857</a>
              from <span class="vcard"><a class="email" href="mailto:johannes.schindelin@gmx.de" title="Johannes Schindelin <johannes.schindelin@gmx.de>"> <span class="fn">Johannes Schindelin</span></a>
</span></b>
        <pre>I believe the culprit lies in
<a href="https://github.com/imagej/imagej-legacy/blob/daf71a07afe0bdbc02d3294665c290e8e75912b9/src/main/java/net/imagej/legacy/DefaultLegacyHooks.java#L468-L469">https://github.com/imagej/imagej-legacy/blob/daf71a07afe0bdbc02d3294665c290e8e75912b9/src/main/java/net/imagej/legacy/DefaultLegacyHooks.java#L468-L469</a>

There are two problems:

* imagej-legacy it intercepts, but somehow ImageJ 1.x does not get the message
that it should not continue to process key events, and then goes on to handle
'\'.

* imagej-legacy does not know about the '\' shortcut, so it tries to handle
that one first, sees nothing to handle that shortcut, and DWIMs a Control key.

The solution for this bug (and the second bullet point) is to register a dummy
handler in the legacy service. This is proper because imagej-legacy needs to
bend over to work around ImageJ 1.x' limitations, including knowing about
pre-existing keyboard shortcuts.

That does not address the first bullet point, though, and if (and when) it is
addressed, the dummy shortcut actually needs to call

    doCommand("Start Animation [\\]");

itself.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>