Fix popup not working in Mac & Linux.

This commit is contained in:
StevenLawson 2014-08-24 18:13:42 -04:00
parent 467f6e47ea
commit bfbcfd1592

View file

@ -323,7 +323,8 @@ public class BTC_MainPanel extends javax.swing.JFrame
{
return;
}
if (mouseEvent.isPopupTrigger() && mouseEvent.getComponent() instanceof JTable)
if ((SwingUtilities.isRightMouseButton(mouseEvent) || mouseEvent.isControlDown()) && mouseEvent.getComponent() instanceof JTable)
{
final PlayerInfo player = getSelectedPlayer();
if (player != null)