Updated controller input display label text to be more intuitive.

This commit is contained in:
mjbudd77 2021-08-20 21:54:16 -04:00
parent 062c4c527d
commit c3b44910a0
1 changed files with 4 additions and 4 deletions

View File

@ -192,9 +192,9 @@ ConsoleVideoConfDialog_t::ConsoleVideoConfDialog_t(QWidget *parent)
inputDisplaySel = new QComboBox();
inputDisplaySel->addItem( tr("None"), 0 );
inputDisplaySel->addItem( tr("GP 1"), 1 );
inputDisplaySel->addItem( tr("GPs 1 & 2"), 2 );
inputDisplaySel->addItem( tr("GPs 1, 2, 3 & 4"), 4 );
inputDisplaySel->addItem( tr("1"), 1 );
inputDisplaySel->addItem( tr("1 & 2"), 2 );
inputDisplaySel->addItem( tr("1, 2, 3 & 4"), 4 );
setComboBoxFromProperty( inputDisplaySel , "SDL.InputDisplay");
@ -351,7 +351,7 @@ ConsoleVideoConfDialog_t::ConsoleVideoConfDialog_t(QWidget *parent)
vbox->addWidget( showLagCount_cbx );
vbox->addWidget( showRerecordCount_cbx );
gbox = new QGroupBox( tr("Input Display:") );
gbox = new QGroupBox( tr("Show Controllers:") );
gbox->setLayout( vbox4 );
vbox->addWidget( gbox );
vbox4->addWidget( inputDisplaySel );