Set the minimum step in the QSpinBoxes to 1/10 of the div unit

This is settings allows the changes on the graph to be more dynamic
This commit is contained in:
andresmmera 2024-09-19 17:07:58 +02:00
parent 758a502f27
commit b8b271a0b0

View File

@ -2095,6 +2095,11 @@ void Qucs_S_SPAR_Viewer::adjust_x_axis_div()
disconnect(QComboBox_x_axis_div, SIGNAL(currentIndexChanged(int)), this, SLOT(updatePlot()));
QComboBox_x_axis_div->setCurrentIndex(new_index);
connect(QComboBox_x_axis_div, SIGNAL(currentIndexChanged(int)), SLOT(updatePlot()));
//Update the step of the spinboxes
double step = QComboBox_x_axis_div->currentText().toDouble()/10;
QSpinBox_x_axis_min->setSingleStep(step);
QSpinBox_x_axis_max->setSingleStep(step);
}
}