Mouse wheel not scrolling in JDialog but working in JFrame
- by Iulian Serbanoiu
Hello,
I'm facing a frustrating issue. I have an application where the scroll wheel doesn't work in a JDialog window (but works in a JFrame).
Here's the code:
import javax.swing.*;
import java.awt.event.*;
public class Failtest extends JFrame {
public static void main(String[] args) {
new Failtest();
}
public Failtest() {
super();
…