[ 1734802 ] Right click on AutoCompletion box is not working as expected
http://sourceforge.net/tracker/index.php?func=detail&aid=1734802&group_id=176962&atid=879332
This commit is contained in:
parent
e30fa38355
commit
9048b8b8e7
|
@ -1367,6 +1367,9 @@ final class VLookup_mouseAdapter extends java.awt.event.MouseAdapter
|
|||
// popup menu
|
||||
if (SwingUtilities.isRightMouseButton(e))
|
||||
m_adaptee.popupMenu.show((Component)e.getSource(), e.getX(), e.getY());
|
||||
// Hide the popup if not right click - teo_sarca [ 1734802 ]
|
||||
else
|
||||
m_adaptee.popupMenu.setVisible(false);
|
||||
} // mouse Clicked
|
||||
|
||||
} // VLookup_mouseAdapter
|
||||
|
|
Loading…
Reference in New Issue