Merge pull request #4995 from vvanelslande/rename-profile

settings, configure_input: fix rename input profile
This commit is contained in:
Weiyi Wang 2019-11-10 21:25:01 -05:00 committed by GitHub
commit 98c396f179
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -505,6 +505,7 @@ void ConfigureInput::RenameProfile() {
ui->profile->setItemText(ui->profile->currentIndex(), new_name);
Settings::RenameCurrentProfile(new_name.toStdString());
Settings::SaveProfile(ui->profile->currentIndex());
}
bool ConfigureInput::IsProfileNameDuplicate(const QString& name) const {

View file

@ -137,8 +137,7 @@ void DeleteProfile(int index) {
}
void RenameCurrentProfile(std::string new_name) {
Settings::values.input_profiles[Settings::values.current_input_profile_index].name =
std::move(new_name);
Settings::values.current_input_profile.name = std::move(new_name);
}
} // namespace Settings