Merge pull request #137 from keywan-ghadami/file-dialog-open-selected-directory

minor improvement for file-dialog
This commit is contained in:
Vadim Lopatin 2015-12-29 11:31:08 +03:00
commit 6579d35685
1 changed files with 4 additions and 0 deletions

View File

@ -368,6 +368,10 @@ class FileDialog : Dialog, CustomGridCellAdapter {
result.stringParam = _filename;
close(result);
return true;
} else if (_filename.length == 0){
auto row = _fileList.row();
onItemActivated(row);
return true;
}
}
return super.handleAction(action);