Increased icon size on Qt about fceux window.

This commit is contained in:
mjbudd77 2021-06-15 21:55:20 -04:00
parent 40046f6e7e
commit d295472df3
1 changed files with 6 additions and 6 deletions

View File

@ -76,7 +76,7 @@ AboutWindow::AboutWindow(QWidget *parent)
QPushButton *closeButton; QPushButton *closeButton;
char stmp[256]; char stmp[256];
pm2 = pm.scaled( 64, 64 ); pm2 = pm.scaled( 128, 128 );
setWindowTitle( tr("About fceuX") ); setWindowTitle( tr("About fceuX") );
@ -93,13 +93,13 @@ AboutWindow::AboutWindow(QWidget *parent)
mainLayout->addLayout( hbox1 ); mainLayout->addLayout( hbox1 );
hbox1 = new QHBoxLayout(); //hbox1 = new QHBoxLayout();
lbl = new QLabel( tr("fceuX") ); //lbl = new QLabel( tr("fceuX") );
hbox1->addWidget( lbl ); //hbox1->addWidget( lbl );
hbox1->setAlignment( Qt::AlignCenter ); //hbox1->setAlignment( Qt::AlignCenter );
mainLayout->addLayout( hbox1 ); //mainLayout->addLayout( hbox1 );
hbox1 = new QHBoxLayout(); hbox1 = new QHBoxLayout();
lbl = new QLabel( tr(FCEU_VERSION_STRING) ); lbl = new QLabel( tr(FCEU_VERSION_STRING) );