Im running an application at a low FPS so i cant constantly edit and draw objects. The program runs on a JPanel which runs at 10 FPS. I would like to be able to right click objects to edit them, but right now when I do so the JPopUpMenu flickers on and off repeatedly. I can only include so much code so i will give you a summary, basically I have a MouseListener that will create a JPopUpMenu when someone right clicks while holding down the ctrl key. I cant include all the code for my JPanel, but here is the MouseReleased method, which ive determined works over the mouse pressed on this OS. This runs in MouseListener class within the JPanel class. Any advice would be lovely, thanks. EDIT: I have tried making an SSCCE but it performed fine, I will likely just give up as it would be to strenuous to comb through all my code to probably not even find the problem. If you have any other ideas do tell. Thanks.
public void mouseReleased(MouseEvent arg0) {
if(controlIsPressed && arg0.getButton() == MouseEvent.BUTTON3){
class PopUpDemo extends JPopupMenu {
JMenuItem anItem;
public PopUpDemo(){
anItem = new JMenuItem("Click Me!");
add(anItem);
}
}
if(arg0.isPopupTrigger()){
PopUpDemo menu = new PopUpDemo();
menu.show(arg0.getComponent(), arg0.getX(), arg0.getY());
}
}
}