diff options
author | Andrew Eikum <[email protected]> | 2016-05-13 09:04:26 -0500 |
---|---|---|
committer | Andrew Eikum <[email protected]> | 2016-05-13 09:04:26 -0500 |
commit | d89043b88e4e055931b97aaef56d520317d8c158 (patch) | |
tree | 9ba6bc97e7558e21ebaceb9b097cb2beb57b624e /utils | |
parent | 59cd6230a661d5cee69c0a44c4dde152eed9f865 (diff) |
alsoft-config: Raise source limit to 4096
Diffstat (limited to 'utils')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index 8f703f7f..bbe179e1 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -278,7 +278,7 @@ MainWindow::MainWindow(QWidget *parent) : mPeriodCountValidator = new QIntValidator(2, 16, this); ui->periodCountEdit->setValidator(mPeriodCountValidator); - mSourceCountValidator = new QIntValidator(0, 256, this); + mSourceCountValidator = new QIntValidator(0, 4096, this); ui->srcCountLineEdit->setValidator(mSourceCountValidator); mEffectSlotValidator = new QIntValidator(0, 16, this); ui->effectSlotLineEdit->setValidator(mEffectSlotValidator); |