From e6273b177f372aed288540ab3a077645ea7b28a3 Mon Sep 17 00:00:00 2001 From: spycrab Date: Tue, 29 May 2018 01:26:17 +0200 Subject: [PATCH] Qt/MappingWindow: Fix profile saving not working when the index is not null --- Source/Core/DolphinQt2/Config/Mapping/MappingWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/Config/Mapping/MappingWindow.cpp b/Source/Core/DolphinQt2/Config/Mapping/MappingWindow.cpp index b87c027e01..d642f17f78 100644 --- a/Source/Core/DolphinQt2/Config/Mapping/MappingWindow.cpp +++ b/Source/Core/DolphinQt2/Config/Mapping/MappingWindow.cpp @@ -216,7 +216,7 @@ void MappingWindow::OnSaveProfilePressed() m_controller->SaveConfig(ini.GetOrCreateSection("Profile")); ini.Save(profile_path); - if (m_profiles_combo->currentIndex() == 0) + if (m_profiles_combo->currentIndex() == 0 || m_profiles_combo->findText(profile_name) == -1) { m_profiles_combo->addItem(profile_name, QString::fromStdString(profile_path)); m_profiles_combo->setCurrentIndex(m_profiles_combo->count() - 1);