added differentiation for adding repo via folder and remote, implementing setting of values from the values method

This commit is contained in:
Sam 2023-09-15 19:14:30 +05:30
parent 44639daafe
commit 7023ab6959
1 changed files with 3 additions and 0 deletions

View File

@ -274,11 +274,14 @@ class ExistingRepoWindow(RepoWindow, BackupProfileMixin):
new_window.repoName.setText(self.values['repo_name'])
# setting values from this previous window (self) to new_window
new_window.values['ssh_key'] = self.values['ssh_key']
new_window.values['repo_url'] = self.values['repo_url']
new_window.values['repo_name'] = self.values['repo_name']
new_window.values['extra_borg_arguments'] = self.values['extra_borg_arguments']
# setting password
new_window.set_password(new_window.values['repo_url'])
new_window.values['password'] = self.values['password']
new_window.passwordInput.passwordLineEdit.setText(self.passwordInput.get_password())
new_window.passwordInput.confirmLineEdit.setText(self.passwordInput.get_password())
new_window._set_status(self.tr("Autofilled from previous window"))