From: <ox-...@us...> - 2003-06-11 19:15:44
|
Update of /cvsroot/sheets/sheets In directory sc8-pr-cvs1:/tmp/cvs-serv31248 Modified Files: Sheets.sheets Log Message: Changed splash to use invokeAndWait (think this may make X happier) Index: Sheets.sheets =================================================================== RCS file: /cvsroot/sheets/sheets/Sheets.sheets,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** Sheets.sheets 10 Jun 2003 09:42:25 -0000 1.56 --- Sheets.sheets 11 Jun 2003 19:14:33 -0000 1.57 *************** *** 7401,7404 **** --- 7401,7405 ---- import javax.swing.text.*; import javax.swing.event.*; + import java.lang.reflect.*; import java.util.*; import java.io.*; *************** *** 82374,82379 **** }; public void run() { ! if (firstPaintComplete) ! SwingUtilities.invokeLater(runner); } }, 0, 33); --- 82375,82383 ---- }; public void run() { ! if (firstPaintComplete) try { ! SwingUtilities.invokeAndWait(runner); ! } catch (InvocationTargetException e) { ! Console.internalError(e); ! } catch (InterruptedException e) { /* ignore */ } } }, 0, 33); |