Problem with popup
Problem with popup
I have a program make using 0.8.0. It have a popupmenu with 'save as..' but with 0.8.1 the menu doesn't show.
Re: Problem with popup
Does it work in the demo application? I've moved the check for the popup trigger to the mousePressed(...) method in JFreeChartPanel...perhaps that doesn't work on some JVMs? What versions (JDK and operating system) are you using?
Regards,
Dave Gilbert
Regards,
Dave Gilbert
Re: Problem with popup
I'm using windows XP and JDK 1.3.1.
It doesn't work in the demo.
It doesn't work in the demo.
Re: Problem with popup
It's working fine for me on Linux (SuSE 7.3) with two different JDK1.3 versions. Anyone else having problems?
Regards,
DG.
Regards,
DG.
Re: Problem with popup
I have the same problem, in 0.8.0 a popupmenu appears, but in 0.8.1 doesn't.
I am using Windows NT and JDK1.3.
I am using Windows NT and JDK1.3.
Re: Problem with popup
I am the same problem. I am running W2K, 0.8.1 and java 1.3.1. When I ran the debugger and stopped it in the MousePressed method of the JFreeCharPanel, the isPopupTrigger is reporting false.
Not sure why
kmd
Not sure why
kmd
Re: Problem with popup
Hi All,
I've now found out that on Windows, the popup trigger occurs on a mouse release, whereas on Linux it occurs on a mouse press. I'll revert to the old code for 0.8.2. In the meantime, please migrate to Linux...
Here's one source of info on Sun's Java site:
http://developer.java.sun.com/developer ... 75576.html
Regards,
DG.
I've now found out that on Windows, the popup trigger occurs on a mouse release, whereas on Linux it occurs on a mouse press. I'll revert to the old code for 0.8.2. In the meantime, please migrate to Linux...
Here's one source of info on Sun's Java site:
http://developer.java.sun.com/developer ... 75576.html
Regards,
DG.
Re: Problem with popup
I hacked it by called mousePressed inside mouseReleased. Like so
public void mouseReleased(MouseEvent e) {
// do nothing
mousePressed(e);
}
public void mouseReleased(MouseEvent e) {
// do nothing
mousePressed(e);
}