Fix shift-DEL action in dimp
authorMichael M Slusarz <slusarz@curecanti.org>
Mon, 8 Jun 2009 21:34:53 +0000 (15:34 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Mon, 8 Jun 2009 21:34:53 +0000 (15:34 -0600)
imp/js/src/DimpBase.js

index c6b8a2f..656b6de 100644 (file)
@@ -1399,7 +1399,7 @@ var DimpBase = {
             if (e.shiftKey) {
                 this.moveSelected((r.last().rownum == this.viewport.getMetaData('total_rows')) ? (r.first().rownum - 1) : (r.last().rownum + 1), true);
             }
-            this.deleteMsg();
+            this.deleteMsg({ vs: sel });
             e.stop();
             break;