mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	configure_hotkeys: Avoid dialog memory leak within Configure()
Without a parent, this dialog won't have its memory freed when it happens to get destroyed.
This commit is contained in:
		
							parent
							
								
									d7d1be509b
								
							
						
					
					
						commit
						562e0114eb
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -78,10 +78,10 @@ void ConfigureHotkeys::Configure(QModelIndex index) { | |||
|     auto* const model = ui->hotkey_list->model(); | ||||
|     const auto previous_key = model->data(index); | ||||
| 
 | ||||
|     auto* const hotkey_dialog = new SequenceDialog; | ||||
|     SequenceDialog hotkey_dialog; | ||||
| 
 | ||||
|     const int return_code = hotkey_dialog->exec(); | ||||
|     const auto key_sequence = hotkey_dialog->GetSequence(); | ||||
|     const int return_code = hotkey_dialog.exec(); | ||||
|     const auto key_sequence = hotkey_dialog.GetSequence(); | ||||
|     if (return_code == QDialog::Rejected || key_sequence.isEmpty()) { | ||||
|         return; | ||||
|     } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue