}
}
// Make the ever-present invisible window on the Mac, with a menu.
private static void openMacPlaceholderFrame() {
JMenuBar menus = new ComboFrameMenuBar();
JFrame frame = new JFrame();
frame.setJMenuBar(menus);
frame.setBounds(-1000000, -1000000, 0, 0);
frame.setUndecorated(true);
frame.setVisible(true);