alecpl
2010-03-23 519aeda2840e52a3114e09359fb4398f140493ad
- Don't underline the parent when thread is expanded


1 files modified
8 ■■■■■ changed files
program/js/app.js 8 ●●●●● patch | view | raw | blame | history
program/js/app.js
@@ -1555,7 +1555,7 @@
        + (flags.unread ? ' unread' : '')
        + (flags.deleted ? ' deleted' : '')
        + (flags.flagged ? ' flagged' : '')
        + (flags.unread_children && !flags.unread ? ' unroot' : '')
        + (flags.unread_children && !flags.unread && !this.env.autoexpand_threads ? ' unroot' : '')
        + (this.message_list.in_selection(uid) ? ' selected' : '');
    // for performance use DOM instead of jQuery here
@@ -1568,8 +1568,7 @@
      icon = this.env.unreadchildrenicon;
    else if (flags.deleted && this.env.deletedicon)
      icon = this.env.deletedicon;
    else if (flags.replied && this.env.repliedicon)
      {
    else if (flags.replied && this.env.repliedicon) {
      if (flags.forwarded && this.env.forwardedrepliedicon)
        icon = this.env.forwardedrepliedicon;
      else
@@ -1582,8 +1581,7 @@
 
    var tree = expando = '';
    if (this.env.threading)
      {
    if (this.env.threading) {
      // This assumes that div width is hardcoded to 15px,
      var width = message.depth * 15;
      if (message.depth) {