You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
}
The text was updated successfully, but these errors were encountered:
For example, run projects/05/CPU.tst and try to scroll output to see right-most columns. (This worked OK with Java 6.)
There is a proposed fix in this n2t forum post
http://preview.tinyurl.com/pcgwkyw
The text was updated successfully, but these errors were encountered: