|
Hello,
I had an issue where I could not scroll horizontally within some of my subwindows (e.g.: HardwareSimulatorMain's HDL window). To fix this I added this line to the WideTable constructor.
HackGUIPackageSource/HackGUI/WideTable.java
public WideTable(TableModel model, int width) {
super(model);
this.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); // <-- Added to scroll
this.width = width;
}
If anyone else experiences this problem give this a try.
Thanks,
Kyle
|