Skip to content

Commit

Permalink
Rename function for action on mouseRelease to fix popup menus (resolv…
Browse files Browse the repository at this point in the history
…es Issue #6)
  • Loading branch information
Jmcleodfoss committed Oct 27, 2020
1 parent 678d604 commit 278c1b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void mousePressed(final java.awt.event.MouseEvent e)
/** Take action when the mouse button is released.
* @param e The mouse event describing the button press.
*/
public void released(java.awt.event.MouseEvent e)
public void mouseReleased(java.awt.event.MouseEvent e)
{
if (!e.isPopupTrigger() || menu.isVisible()) {
doPopupCancel();
Expand Down

0 comments on commit 278c1b8

Please sign in to comment.