aboutsummaryrefslogtreecommitdiffstats
path: root/utils/alsoft-config/mainwindow.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-04-28 22:21:23 -0700
committerChris Robinson <[email protected]>2019-04-28 22:21:23 -0700
commitc7e388873c075daa58c26d168080b36300372fd0 (patch)
tree1077713dfdc5f59b57c4484315ece804a44b4ded /utils/alsoft-config/mainwindow.cpp
parent8ca849655f6c292527d0e260718ba0eca4179fb1 (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.cpp3
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();
}