(ComponentEvent e)
| 141 | ComponentListener l = new ComponentAdapter() { |
| 142 | |
| 143 | @Override |
| 144 | public void componentResized(ComponentEvent e) { |
| 145 | // next line possible if list is of type JXList |
| 146 | // list.invalidateCellSizeCache(); |
| 147 | // for core: force cache invalidation by temporarily setting fixed height |
| 148 | listProfiles.setFixedCellHeight(10); |
| 149 | listProfiles.setFixedCellHeight(-1); |
| 150 | } |
| 151 | |
| 152 | }; |
| 153 |
nothing calls this directly
no outgoing calls
no test coverage detected