Slight size adjustments to PAL palette sliders. Since sharpness has less range than the others, size it smaller so that the others have finer control.

This commit is contained in:
mjbudd77 2021-06-17 21:27:54 -04:00
parent b87452861c
commit 359b5c3786
1 changed files with 3 additions and 0 deletions

View File

@ -186,6 +186,9 @@ PaletteConfDialog_t::PaletteConfDialog_t(QWidget *parent)
palFrame->setEnabled( nes_shm->video.preScaler == 9 );
grid = new QGridLayout();
grid->setColumnStretch( 0, 40 );
grid->setColumnStretch( 1, 40 );
grid->setColumnStretch( 2, 20 );
sprintf(stmp, "Notch: %3i%%", palnotch);
notchFrame = new QGroupBox(tr(stmp));