diff options
author | thomascube <thomas@roundcube.net> | 2008-02-13 07:43:33 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-02-13 07:43:33 +0000 |
commit | d24d208d1c9b952cc0c1fdcd1c30cb0150ad53ac (patch) | |
tree | 6cfbadfb8c516ebba4073be104a07774ccb1e60e /program/js/app.js | |
parent | 847bfe697f925f90577f2d3f135f579e6e08c9ea (diff) |
Always use subject col when dragging messages
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 07b42a5f5..20cd67b2c 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -146,6 +146,9 @@ function rcube_webmail() else this.message_list.focus(); } + + if (this.env.coltypes) + this.set_message_coltypes(this.env.coltypes); // enable mail commands this.enable_command('list', 'checkmail', 'compose', 'add-contact', 'search', 'reset-search', true); @@ -3183,8 +3186,10 @@ function rcube_webmail() cell.id = 'rcmHead'+col; } + + if (col == 'subject' && this.message_list) + this.message_list.subject_col = n+1; } - }; // create a table row in the message list |