Skip to content

Commit

Permalink
Merge pull request #41 from ColdPie1/source_limit
Browse files Browse the repository at this point in the history
alsoft-config: Raise source limit to 4096
  • Loading branch information
kcat committed May 14, 2016
2 parents f751f5e + d89043b commit 0f7e499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/alsoft-config/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0f7e499

Please sign in to comment.