alecpl
2010-08-27 196d04f4884ff9dd4dc6d59e5b392a06f14caa6d
- Fix "Select all" causes message to be opened in folder with exactly one message (#1486913)


2 files modified
5 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/app.js 4 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -8,6 +8,7 @@
- Remove redundant date in syslog messages (#1486945)
- Fix contacts list page controls when a group is selected (#1486946)
- Fix SMTP test in Installer (#1486952)
- Fix "Select all" causes message to be opened in folder with exactly one message (#1486913)
RELEASE 0.4
-----------
program/js/app.js
@@ -715,10 +715,12 @@
      case 'select-all':
        this.select_all_mode = props ? false : true;
        this.dummy_select = true; // prevent msg opening if there's only one msg on the list
        if (props == 'invert')
          this.message_list.invert_selection();
        else
          this.message_list.select_all(props == 'page' ? '' : props);
        this.dummy_select = null;
        break;
      case 'select-none':
@@ -1370,7 +1372,7 @@
      this.select_all_mode = false;
    // start timer for message preview (wait for double click)
    if (selected && this.env.contentframe && !list.multi_selecting)
    if (selected && this.env.contentframe && !list.multi_selecting && !this.dummy_select)
      this.preview_timer = window.setTimeout(function(){ ref.msglist_get_preview(); }, 200);
    else if (this.env.contentframe)
      this.show_contentframe(false);