From 359b5c37869f14794c0adedd6f2fe8d0aeaef7ae Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Thu, 17 Jun 2021 21:27:54 -0400 Subject: [PATCH] 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. --- src/drivers/Qt/PaletteConf.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/drivers/Qt/PaletteConf.cpp b/src/drivers/Qt/PaletteConf.cpp index 9d3d718a..e8d48098 100644 --- a/src/drivers/Qt/PaletteConf.cpp +++ b/src/drivers/Qt/PaletteConf.cpp @@ -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));