Author: jflesch
Date: 2007-01-19 22:14:16 +0000 (Fri, 19 Jan 2007)
New Revision: 11611
Modified:
trunk/apps/Thaw/src/thaw/plugins/queueWatcher/QueuePanel.java
Log:
Fix the delete icon the toolbar of the statut tab
Modified: trunk/apps/Thaw/src/thaw/plugins/queueWatcher/QueuePanel.java
===================================================================
--- trunk/apps/Thaw/src/thaw/plugins/queueWatcher/QueuePanel.java
2007-01-19 15:35:27 UTC (rev 11610)
+++ trunk/apps/Thaw/src/thaw/plugins/queueWatcher/QueuePanel.java
2007-01-19 22:14:16 UTC (rev 11611)
@@ -392,11 +392,7 @@
selectedRows = null;
}
- public void removeSelected() {
- }
-
-
public class ActionReplier implements Runnable, ClipboardOwner {
private int action;
private int new_priority;
@@ -528,11 +524,13 @@
public void removeSelectedTransfers() {
+ reloadSelections();
Thread th = new Thread(new
ActionReplier(ACTION_REMOVE_SELECTED, -1));
th.start();
}
public void removeAllFinishedTransfers() {
+ reloadSelections();
Thread th = new Thread(new
ActionReplier(ACTION_REMOVE_FINISHED, -1));
th.start();
}