Author: jflesch
Date: 2007-06-25 22:51:05 +0000 (Mon, 25 Jun 2007)
New Revision: 13755

Modified:
   trunk/apps/Thaw/src/thaw/plugins/TrayIcon.java
Log:
Woops, forgot to start the thread refreshing the panel attached to the tray icon

Modified: trunk/apps/Thaw/src/thaw/plugins/TrayIcon.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/TrayIcon.java      2007-06-25 20:44:20 UTC 
(rev 13754)
+++ trunk/apps/Thaw/src/thaw/plugins/TrayIcon.java      2007-06-25 22:51:05 UTC 
(rev 13755)
@@ -229,6 +229,7 @@
                dialog.validate();

                dialog.setVisible(true);
+               dialog.toFront();
        }


@@ -285,6 +286,8 @@

                /* progressBars vector is generated at the same time than the 
panels */
                refresher = new ProgressBarRefresher(progressBars);
+               Thread th = new Thread(refresher);
+               th.start();
        }

        public void hideFrame() {


Reply via email to