Jump to content

911711

Members
  • Content Count

    1
  • Joined

  • Last visited

Community Reputation

0 Neutral

1 Follower

About 911711

  • Rank
    Newbie

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. 911711

    Right clicking with java 9

    That code looks awful all you have to do is replace if (type == 2) { with if (SwingUtilities.isMiddleMouseButton(e)) { if (mouseevent.isMetaDown()) { with if (SwingUtilities.isRightMouseButton(e)) { and finally replace } else { with } else if (SwingUtilities.isLeftMouseButton(e)) {
×