diff --git wp-admin/js/edit-comments.dev.js wp-admin/js/edit-comments.dev.js
index 76bcc79..85df8a1 100644
--- wp-admin/js/edit-comments.dev.js
+++ wp-admin/js/edit-comments.dev.js
@@ -244,6 +244,9 @@ setCommentsList = function() {
 				$('#undo-' + id).fadeIn(300, function(){ $(this).show() });
 		});
 	$(listTable).bind('changePage', refillTheExtraList);
+	$(commentReply).bind('sent', function(){
+		dashboardTotals(1);
+	});
 };
 
 commentReply = {
@@ -418,7 +421,7 @@ commentReply = {
 			type : 'POST',
 			url : ajaxurl,
 			data : post,
-			success : function(x) { commentReply.show(x); },
+			success : function(x) { commentReply.show(x); $(commentReply).trigger('sent'); },
 			error : function(r) { commentReply.error(r); }
 		});
 
@@ -441,6 +444,7 @@ commentReply = {
 
 		r = r.responses[0];
 		c = r.data;
+
 		id = '#comment-' + r.id;
 		if ( 'edit-comment' == this.act )
 			$(id).remove();
