mv2a / CM

1 stars 0 forks source link

network scan needs to run in a separated thread #4

Open mv2a opened 9 years ago

mv2a commented 9 years ago

something like this:

                    new Thread(new Runnable() {
                        @Override
                        public void run() {
                            //stuff
                        }
                    }).start();

However, an attempt to do that caused problems with the gui treeview when refreshing it.