mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 10:00:54 +00:00
Bug 83662 - can't select first file in linux filepicker. r=jag, sr=blizzard, a=asa.
This commit is contained in:
parent
9a64865fff
commit
4c99c242aa
@ -232,7 +232,7 @@ nsFileView.prototype = {
|
||||
|
||||
/* void selectionChanged(); */
|
||||
selectionChanged: function() {
|
||||
if (this.mSelectionCallback && this.mSelection.currentIndex > 0) {
|
||||
if (this.mSelectionCallback && this.mSelection.currentIndex != -1) {
|
||||
var file;
|
||||
if (this.mSelection.currentIndex < this.mDirList.length) {
|
||||
file = this.mDirList[this.mSelection.currentIndex].file;
|
||||
|
Loading…
Reference in New Issue
Block a user