diff --git a/src/com/tivo/kmttg/gui/remote/deleted.java b/src/com/tivo/kmttg/gui/remote/deleted.java index 50bd44db..de15af88 100755 --- a/src/com/tivo/kmttg/gui/remote/deleted.java +++ b/src/com/tivo/kmttg/gui/remote/deleted.java @@ -113,7 +113,13 @@ public void handle(ActionEvent e) { public void handle(ActionEvent e) { String tivoName = tivo.getValue(); if (tivoName != null && tivoName.length() > 0) { - tab.permanentlyDelete(tivoName); + Task task = new Task() { + @Override public Void call() { + tab.permanentlyDelete(tivoName); + return null; + } + }; + new Thread(task).start(); } } });