Although I call my JFrame constructor properly, I don get a window title in unix. What gives?
This seems to be a problem with the default Window Manager in Sweet Hall. Notice that if you switch to fvwm95 you don’t get this problem. If you have no idea what I’m talking about, don’t worry, count this as a Swing bug and not your own. Back to top… Q: If I’m in the middle of editing a cell, and then I hit the sort button, bad things happen. I understand that this is considered a Swing bug, but I’d really like to have this work! A: Well now you can! The following lines will do the trick: if(mTable.isEditing()) { mTable.getCellEditor().stopCellEditing(); } } Essentially this is forcing the table to hit “Enter” if you’re in the middle of editing a cell. Back to top…