diff options
author | thomascube <thomas@roundcube.net> | 2008-09-18 20:16:27 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-18 20:16:27 +0000 |
commit | 633142fa6b43649af0398bccb17f9cfdf5241cf8 (patch) | |
tree | 72085d8b7342b2f7ee1b8c490a68b9a0406e50df /program/js | |
parent | 9787ca6063cb6da225532f9a4e99e89c9c805155 (diff) |
Prevent drag layer from wrapping lines
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js index 6abe6a023..5da2bb15b 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -693,7 +693,7 @@ drag_mouse_move: function(e) return false; if (!this.draglayer) - this.draglayer = new rcube_layer('rcmdraglayer', {x:0, y:0, width:300, vis:0, zindex:2000}); + this.draglayer = new rcube_layer('rcmdraglayer', {x:0, y:0, vis:0, zindex:2000}); // get subjects of selectedd messages var names = ''; |