[Jarspy-commits] CVS: JarSpy/src/com/ociweb/gui ChangeLookAndFeelAction.java,1.3,1.4
Status: Beta
Brought to you by:
brown_j
|
From: Jeff B. <br...@us...> - 2002-10-17 23:47:56
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/gui
In directory usw-pr-cvs1:/tmp/cvs-serv3017/src/com/ociweb/gui
Modified Files:
ChangeLookAndFeelAction.java
Log Message:
reorder setlaf
Index: ChangeLookAndFeelAction.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/gui/ChangeLookAndFeelAction.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ChangeLookAndFeelAction.java 17 Oct 2002 23:29:04 -0000 1.3
--- ChangeLookAndFeelAction.java 17 Oct 2002 23:47:53 -0000 1.4
***************
*** 50,54 ****
if (laf != null) {
try {
- UIManager.setLookAndFeel(laf);
try {
// deal with Kunststoff issue that leaves the static theme
--- 50,53 ----
***************
*** 61,64 ****
--- 60,64 ----
e.printStackTrace();
}
+ UIManager.setLookAndFeel(laf);
if (parentComponent != null) {
SwingUtilities.updateComponentTreeUI(parentComponent);
|