Merge pull request #8071 from ctrlaltdavid/20969

let user choose an existing file in the file save dialog
This commit is contained in:
Brad Hefta-Gaub 2016-06-17 14:14:37 -07:00 committed by GitHub
commit abd368b69d

View file

@ -614,12 +614,6 @@ ModalWindow {
readOnly: !root.saveDialog
activeFocusOnTab: !readOnly
onActiveFocusChanged: if (activeFocus) { selectAll(); }
onTextChanged: {
if (root.saveDialog && text !== "") {
fileTableView.selection.clear();
fileTableView.currentRow = -1;
}
}
onAccepted: okAction.trigger();
}