mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #4911 from vitor-k/master
Add a cancel option to analog stick configuration
This commit is contained in:
		
						commit
						05a07f944b
					
				
					 1 changed files with 13 additions and 10 deletions
				
			
		|  | @ -231,9 +231,11 @@ ConfigureInput::ConfigureInput(QWidget* parent) | |||
|                     }); | ||||
|         } | ||||
|         connect(analog_map_stick[analog_id], &QPushButton::clicked, [=]() { | ||||
|             QMessageBox::information(this, tr("Information"), | ||||
|             if (QMessageBox::information( | ||||
|                     this, tr("Information"), | ||||
|                     tr("After pressing OK, first move your joystick horizontally, " | ||||
|                                         "and then vertically.")); | ||||
|                        "and then vertically."), | ||||
|                     QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Ok) { | ||||
|                 HandleClick(analog_map_stick[analog_id], | ||||
|                             [=](const Common::ParamPackage& params) { | ||||
|                                 analogs_param[analog_id] = params; | ||||
|  | @ -241,6 +243,7 @@ ConfigureInput::ConfigureInput(QWidget* parent) | |||
|                                 Settings::SaveProfile(ui->profile->currentIndex()); | ||||
|                             }, | ||||
|                             InputCommon::Polling::DeviceType::Analog); | ||||
|             } | ||||
|         }); | ||||
|     } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue