Sam
Sam
In `src/vorta/utils.py`: ```python def choose_file_dialog(parent, title, want_folder=True): dialog = QFileDialog(parent, title, os.path.expanduser('~')) dialog.setFileMode(QFileDialog.FileMode.Directory if want_folder else QFileDialog.FileMode.ExistingFiles) dialog.setParent(parent, QtCore.Qt.WindowType.Sheet) if want_folder: dialog.setOption(QFileDialog.Option.ShowDirsOnly) return dialog ``` This is the function responsible...
> Is this really a limitation of Qt or are we using QFileDialog incorrectly? Its is a limitation. Though alternatively, we can use `QTreeView` with `QAbstractItemView.SelectionMode.MultiSelection` selection mode. ```python def...
Made a PR, not complete yet, now you can select multiple directories but none of them get added to the sources if selected multiple. If you select only one, that...
> Is it still open? Can I work on this? I have worked on qt5 before, I think i can fix this. Can you assign it to me? I'm still...
> Oh even I was ready with a PR, I shared a screenshot in the issue thread. Could've saved one of us the work if you told me that you...
> To avoid overlaps, you can make sure the issue is assigned to you before working on it. > > As for this implementation, it's reading a file. We should...
Well, apparently I have exams starting soon and also have to ready my proposal for GSOC. So, I'll add this one along with some more issues in my proposal.
> To avoid overlaps, you can make sure the issue is assigned to you before working on it. > > As for this implementation, it's reading a file. We should...
> Editor looks good. Just what I imagined. > > I'd remove the "Load from file" button though. Since the problem it solves is very minor. One can easily copy...
Update:  