Skip to content

Commit

Permalink
Handles better when show the file list.
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Carlos authored and Juan Carlos committed Oct 21, 2016
1 parent 0b86a9b commit 414581b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions editor/VPLIDE.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
file_manager.addFile(file, true, updateMenu, showErrorMessage);
},
function(){
file_manager.fileListDoVisibleIfNeeded();
file_manager.fileListVisibleIfNeeded();
});
e.stopImmediatePropagation();
return false;
Expand Down Expand Up @@ -230,7 +230,7 @@
this.isFileListVisible = function() {
return file_list_container.vpl_visible;
};
this.fileListDoVisibleIfNeeded = function() {
this.fileListVisibleIfNeeded = function() {
if ( this.isFileListVisible() ){
return;
}
Expand Down Expand Up @@ -1064,7 +1064,7 @@
file_manager.addFile(file, true, updateMenu, showErrorMessage);
},
function(){
file_manager.fileListDoVisibleIfNeeded();
file_manager.fileListVisibleIfNeeded();
});
};
file_select.on('change', file_select_handler);
Expand Down

0 comments on commit 414581b

Please sign in to comment.