minor improvement for file-dialog

if the user selects no file and press the open button:
 the dialog will (instead of closing itself) now open the selected directory
This commit is contained in:
Keywan Ghadami 2015-12-29 08:49:37 +01:00
parent 4f0cced6b4
commit d51e05396c
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);