<li>Incorrect warning about deleting all data when deleting selected columns</li>
<li>Patch to build system for shipping properly signed JNLP templates for webstart launch</li>
<li>EMBL-PDBe fetcher/viewer dialogs do not offer unreleased structures for download or viewing</li>
- <li></li>
+ <li>Disabled 'minimise' button on Jalview windows running on OSX to workaround redraw hang bug</li>
</ul>
<em>Applet</em><ul>
<li>Reorder sequences mirrored in cDNA/Protein split frame</li>
import jalview.structure.StructureSelectionManager;
import jalview.util.ImageMaker;
import jalview.util.MessageManager;
+import jalview.util.Platform;
import jalview.viewmodel.AlignmentViewport;
import jalview.ws.params.ParamManager;
boolean showjconsole = jalview.bin.Cache.getDefault(
"SHOW_JAVA_CONSOLE", false);
desktop = new MyDesktopPane(selmemusage);
+ if (Platform.isAMac())
+ {
+ desktop.setDoubleBuffered(false);
+ }
showMemusage.setSelected(selmemusage);
desktop.setBackground(Color.white);
getContentPane().setLayout(new BorderLayout());
frame.setResizable(resizable);
frame.setMaximizable(resizable);
frame.setIconifiable(resizable);
- frame.setFrameIcon(null);
-
+ if (Platform.isAMac())
+ {
+ frame.setIconifiable(false);
+ frame.setFrameIcon(null);
+ // frame.setDesktopIcon(null);
+ frame.setDoubleBuffered(false);
+ }
if (frame.getX() < 1 && frame.getY() < 1)
{
frame.setLocation(xOffset * openFrameCount, yOffset