diff options
author | kcat <[email protected]> | 2016-05-14 12:44:58 -0700 |
---|---|---|
committer | kcat <[email protected]> | 2016-05-14 12:44:58 -0700 |
commit | 0f7e4993237e83ddc53a958a6369924da53c4a99 (patch) | |
tree | f8df994682894006215a9f10c263c1c2fa2641cd | |
parent | f751f5e25e2a6451dc68ecf091ea5a6d57513679 (diff) | |
parent | d89043b88e4e055931b97aaef56d520317d8c158 (diff) |
Merge pull request #41 from ColdPie1/source_limit
alsoft-config: Raise source limit to 4096
-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); |