mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	sequence_dialog: Remove unnecessary horizontal specifier
QDialogButtonBoxes are horizontal by default.
This commit is contained in:
		
							parent
							
								
									186ffc235f
								
							
						
					
					
						commit
						ec837cd16c
					
				
					 1 changed files with 1 additions and 2 deletions
				
			
		|  | @ -12,8 +12,7 @@ SequenceDialog::SequenceDialog(QWidget* parent) : QDialog(parent) { | |||
|     auto* layout = new QVBoxLayout(this); | ||||
|     key_sequence = new QKeySequenceEdit; | ||||
|     layout->addWidget(key_sequence); | ||||
|     auto* buttons = | ||||
|         new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal); | ||||
|     auto* buttons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); | ||||
|     buttons->setCenterButtons(true); | ||||
|     layout->addWidget(buttons); | ||||
|     connect(buttons, &QDialogButtonBox::accepted, this, &QDialog::accept); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue