From 52818559ce020e551addd125ac8382bdda020f46 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Sun, 31 May 2009 07:12:04 -0400 Subject: [PATCH] - Added possibility to invert messages selection --- program/js/app.js | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index 18a4f1a..5e323e2 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -826,7 +826,10 @@ break; case 'select-all': - this.message_list.select_all(props); + if (props == 'invert') + this.message_list.invert_selection(); + else + this.message_list.select_all(props); break; case 'select-none': -- Gitblit v1.9.1