From: Joe E. <jo...@em...> - 2006-03-18 19:31:17
|
Starting on line 411 in OberheimMatrixSingleEditor, there's a section that works around some unspecified JRE bug: > if (Utility.getOSName().equals("Linux")) // Does J2SE 1.4 still > require this? > { > ErrorMsg.reportStatus("Matrix1000Editor: Linux Detected-- adding > 30 pixels to window height to compensate for Sun/JRE bug"); > Dimension rv = getSize(); > setSize(rv.width, rv.height + 30); > } I thought I saw some code working around a bug like this in the JSLFrame/JSLDesktop infrastructure somewhere, but I can't find it at the moment. Anyway, my questions are: 1 - Does this bug still exist in 1.4? 2 - If it does, wouldn't it need to be worked around for all JSLFrames and, if so, shouldn't this code be in JSLFrame or JSLDesktop or someplace like that? - Joe |