diff options
author | Chris Robinson <[email protected]> | 2019-04-28 22:21:23 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-04-28 22:21:23 -0700 |
commit | c7e388873c075daa58c26d168080b36300372fd0 (patch) | |
tree | 1077713dfdc5f59b57c4484315ece804a44b4ded /utils/alsoft-config/mainwindow.cpp | |
parent | 8ca849655f6c292527d0e260718ba0eca4179fb1 (diff) |
Increase the period size slider and don't use steps of 64
Diffstat (limited to 'utils/alsoft-config/mainwindow.cpp')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index ad0223da..a83133b3 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -1144,10 +1144,7 @@ void MainWindow::updatePeriodSizeEdit(int size) { ui->periodSizeEdit->clear(); if(size >= 64) - { - size = (size+32)&~0x3f; ui->periodSizeEdit->insert(QString::number(size)); - } enableApplyButton(); } |