(self)
| 85 | directoryDialogButton, rowPosition, 3, Qt.AlignmentFlag.AlignLeft | Qt.AlignmentFlag.AlignTop) |
| 86 | |
| 87 | def saved_scripts(self): |
| 88 | _saved_scripts = [] |
| 89 | index = 0 |
| 90 | |
| 91 | for _ in range(self.scriptsLayout.rowCount()-1): |
| 92 | textField = self.scriptsLayout.itemAt(index + 1).widget() |
| 93 | _saved_scripts.append(textField.text()) |
| 94 | index += 4 |
| 95 | |
| 96 | return _saved_scripts |
| 97 | |
| 98 | def _clearScript(self): |
| 99 | obj = self.mainDialog.sender() |