Bug 257075 [keyboard] User can't select mails which are not next to.

r=aaronleventhal sr=neil
This commit is contained in:
ginn.chen%sun.com 2005-03-14 03:37:05 +00:00
Родитель c21d276ff3
Коммит eee7a20d0b
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -484,7 +484,7 @@
<handler event="keypress"> <handler event="keypress">
<![CDATA[ <![CDATA[
var c = this.currentIndex; var c = this.currentIndex;
if (event.keyCode == ' '.charCodeAt(0)) { if (event.charCode == ' '.charCodeAt(0)) {
if (!this.view.selection.isSelected(c)) if (!this.view.selection.isSelected(c))
this.view.selection.toggleSelect(c); this.view.selection.toggleSelect(c);
} }

Просмотреть файл

@ -477,7 +477,7 @@
<handler event="keypress"> <handler event="keypress">
<![CDATA[ <![CDATA[
var c = this.currentIndex; var c = this.currentIndex;
if (event.keyCode == ' '.charCodeAt(0)) { if (event.charCode == ' '.charCodeAt(0)) {
if (!this.view.selection.isSelected(c)) if (!this.view.selection.isSelected(c))
this.view.selection.toggleSelect(c); this.view.selection.toggleSelect(c);
} }