Roundcube Community Forum

Release Support => Pending Issues => Topic started by: bugler on January 24, 2007, 03:27:09 AM

Title: Little bug in app.js?
Post by: bugler on January 24, 2007, 03:27:09 AM
Hi,

I think function

 // onmouseup handler for mailboxlist item
 this.mbox_mouse_up = function(mbox)
  { //alert("mouse_mbox_up");
  if (this.drag_active)
   {
   this.unfocus_mailbox(mbox);
   this.command('moveto', mbox);
   }
  else
   this.command('list', mbox);    
  return false;
  };

should be
 // onmouseup handler for mailboxlist item
 this.mbox_mouse_up = function(mbox)
  { //alert("mouse_mbox_up");
  if (this.drag_active)
   {
   this.unfocus_mailbox(mbox);
   this.command('moveto', mbox);
   }
  else
   this.command('list', mbox);    
   this.enable_command( 'reply', 'reply-all', 'forward', 'print', false);
  return false;
  };

so reply, reply-all and so on are not active when you change folder and no message is selected.

Ed.