Index: AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.java
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.java	(revision 645)
+++ AE/installer2/src/net/oni2/aeinstaller/gui/modtable/ModTableModel.java	(revision 646)
@@ -30,4 +30,6 @@
 	private HashSet<DownloadSizeListener> listeners = new HashSet<DownloadSizeListener>();
 
+	private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
+
 	/**
 	 * Create a new model
@@ -58,5 +60,4 @@
 				return res;
 			case 5:
-				SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
 				if (mod.getFile() != null)
 					return sdf.format(new Date(
@@ -177,4 +178,5 @@
 			install.add(i, items.get(i).isInstalled());
 		}
+		notifyDownloadSize(0);
 		fireTableDataChanged();
 	}
@@ -220,4 +222,9 @@
 	public boolean isCellEditable(int rowIndex, int columnIndex) {
 		return columnIndex == 0;
+	}
+	
+	private void notifyDownloadSize(int size) {
+		for (DownloadSizeListener dsl : listeners)
+			dsl.downloadSizeChanged(size);
 	}
 
@@ -236,6 +243,5 @@
 				}
 			}
-			for (DownloadSizeListener dsl : listeners)
-				dsl.downloadSizeChanged(size);
+			notifyDownloadSize(size);
 		}
 	}
